We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b85ba06 commit 6489f17Copy full SHA for 6489f17
client/browser/BrowserEditor.tsx
@@ -89,7 +89,7 @@ export default function BrowserEditor(props) {
89
}
90
return (props) => (
91
<div className="browser-editor">
92
- <img src={props.file_info.thumbnail_url} />
+ <img className="thumbnail" src={props.file_info.thumbnail_url} />
93
<EditorForm {...props} />
94
</div>
95
);
client/scss/finder-browser.scss
@@ -242,6 +242,9 @@ dialog {
242
243
img {
244
width: 100%;
245
+ &.thumbnail {
246
+ max-width: 175px;
247
+ }
248
249
250
form {
0 commit comments