Fix: changed icons to solid on sidebar for temp

This commit is contained in:
nizune 2021-07-01 19:27:38 +02:00
parent 71bc438333
commit 9243b3e20d
2 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import { Localizer, Text } from "preact-i18n"; import { Localizer, Text } from "preact-i18n";
import { useContext, useEffect } from "preact/hooks"; import { useContext, useEffect } from "preact/hooks";
import { Home, Group, Wrench, Save } from "@styled-icons/boxicons-regular"; import { Home, UserDetail, Wrench, Save } from "@styled-icons/boxicons-solid";
import Category from '../../ui/Category'; import Category from '../../ui/Category';
import PaintCounter from "../../../lib/PaintCounter"; import PaintCounter from "../../../lib/PaintCounter";
@ -85,7 +85,7 @@ function HomeSidebar(props: Props) {
) !== "undefined" ? 'unread' : undefined ) !== "undefined" ? 'unread' : undefined
} }
> >
<Group size={20} /> <UserDetail size={20} />
<span><Text id="app.navigation.tabs.friends" /></span> <span><Text id="app.navigation.tabs.friends" /></span>
</ButtonItem> </ButtonItem>
</ConditionalLink> </ConditionalLink>

View file

@ -18,7 +18,6 @@ const CategoryBase = styled.div<Pick<Props, 'variant'>>`
justify-content: space-between; justify-content: space-between;
svg { svg {
stroke: var(--foreground);
cursor: pointer; cursor: pointer;
} }