Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Commit ed78629

Browse files
committed
Change column behaviour
Signed-off-by: Tilman Vatteroth <[email protected]>
1 parent 401a7c4 commit ed78629

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/editor-page/metadata-editor/metadata-editor.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const MetadataEditor: React.FC<MetadataEditorProps> = ({ show, onHide })
6969
titleI18nKey={ 'editor.modal.metadataEditor.title' }>
7070
<Modal.Body>
7171
<Row>
72-
<Col xs={ 6 }>
72+
<Col lg={ 6 }>
7373
<InputLabel id={ 'title' } label={ t('editor.modal.metadataEditor.labels.title') }>
7474
<StringMetadataInput id={ 'title' } content={ yamlMetadata.title }
7575
onContentChange={ title => setNoteFrontmatter({ ...yamlMetadata, title }) }/>
@@ -91,7 +91,7 @@ export const MetadataEditor: React.FC<MetadataEditorProps> = ({ show, onHide })
9191
onContentChange={ disqus => setNoteFrontmatter({ ...yamlMetadata, disqus }) }/>
9292
</InputLabel>
9393
</Col>
94-
<Col xs={ 6 }>
94+
<Col lg={ 6 }>
9595
<InputLabel id={ 'lang' } label={ t('editor.modal.metadataEditor.labels.lang') }>
9696
<DatalistMetadataInput id={ 'lang' } options={ ISO.getAllCodes() } content={ yamlMetadata.lang }
9797
onContentChange={ lang => setNoteFrontmatter({ ...yamlMetadata, lang }) }/>

0 commit comments

Comments
 (0)