styles: make note tags background color transparent
This commit is contained in:
@@ -102,7 +102,7 @@ export const AutocompleteTagInput = observer(({ appState }: Props) => {
|
|||||||
<Disclosure open={dropdownVisible} onChange={showDropdown}>
|
<Disclosure open={dropdownVisible} onChange={showDropdown}>
|
||||||
<input
|
<input
|
||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
className={`${tags.length > 0 ? 'w-80' : 'w-70 mr-10'} bg-default text-xs
|
className={`${tags.length > 0 ? 'w-80' : 'w-70 mr-10'} bg-transparent text-xs
|
||||||
color-text no-border h-7 focus:outline-none focus:shadow-none focus:border-bottom`}
|
color-text no-border h-7 focus:outline-none focus:shadow-none focus:border-bottom`}
|
||||||
value={autocompleteSearchQuery}
|
value={autocompleteSearchQuery}
|
||||||
onChange={onSearchQueryChange}
|
onChange={onSearchQueryChange}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ const NoteTagsContainer = observer(({ appState }: Props) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className="bg-default flex flex-wrap min-w-80 -mt-1 -mr-2"
|
className="bg-transparent flex flex-wrap min-w-80 -mt-1 -mr-2"
|
||||||
style={{
|
style={{
|
||||||
maxWidth: tagsContainerMaxWidth,
|
maxWidth: tagsContainerMaxWidth,
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user