fix: spacing between title and tags

This commit is contained in:
Antonella Sgarlatta
2021-06-03 15:35:59 -03:00
parent 4f729c7287
commit 524bcd09cb
4 changed files with 6 additions and 9 deletions

View File

@@ -77,7 +77,7 @@ export const AutocompleteTagInput = observer(({ appState }: Props) => {
return (
<form
onSubmit={onFormSubmit}
className={`${tags.length > 0 ? 'mt-2' : ''}`}
className={`${tags.length > 0 ? 'mt-2' : 'mt-1'}`}
>
<Disclosure open={dropdownVisible} onChange={showDropdown}>
<input

View File

@@ -21,7 +21,7 @@ const NoteTagsContainer = observer(({ appState }: Props) => {
return (
<div
className="bg-default flex flex-wrap pl-1 -ml-1 -ml-2"
className="bg-default flex flex-wrap min-w-80 -mt-1 mr-2"
style={{
maxWidth: tagsContainerMaxWidth,
}}