Fixed margin in button

This commit is contained in:
Alejandro Celaya 2022-03-24 20:23:46 +01:00
parent 2d8c2f92c4
commit 0e4e430673

View file

@ -108,7 +108,7 @@ export const ShortUrlForm = (
</FormGroup> </FormGroup>
<Row> <Row>
{isBasicMode && renderOptionalInput('customSlug', 'Custom slug', 'text', { bsSize: 'lg' }, { className: 'col-lg-6' })} {isBasicMode && renderOptionalInput('customSlug', 'Custom slug', 'text', { bsSize: 'lg' }, { className: 'col-lg-6' })}
<div className={isBasicMode ? 'col-lg-6' : 'col-12 mb-0'}> <div className={isBasicMode ? 'col-lg-6 mb-3' : 'col-12'}>
<TagsSelector selectedTags={shortUrlData.tags ?? []} onChange={changeTags} /> <TagsSelector selectedTags={shortUrlData.tags ?? []} onChange={changeTags} />
</div> </div>
</Row> </Row>