styles: change tags icon color

This commit is contained in:
Antonella Sgarlatta
2021-06-02 19:57:11 -03:00
parent 9513392f6c
commit 3fb3425aa2
2 changed files with 5 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ export const NoteTag: FunctionalComponent<Props> = ({ appState, tag }) => {
}}
onBlur={closeOnBlur}
>
<Icon type="hashtag" className="sn-icon--small color-neutral mr-1" />
<Icon type="hashtag" className="sn-icon--small mr-1 color-info" />
<span className="whitespace-nowrap overflow-hidden overflow-ellipsis">
{tag.title}
</span>

View File

@@ -113,6 +113,10 @@
color: var(--sn-stylekit-danger-color);
}
.color-info {
color: var(--sn-stylekit-info-color);
}
.ring-info {
box-shadow: 0 0 0 2px var(--sn-stylekit-info-color);
}