Skip to content
Snippets Groups Projects
Commit 2f600139 authored by nizune's avatar nizune
Browse files

Fix: Set font-family: inherit on auto-complete

parent 76f43a4b
Branches
Tags 0.3.3-alpha.0
No related merge requests found
......@@ -359,6 +359,7 @@ const Base = styled.div<{ detached?: boolean }>`
background: transparent;
color: var(--foreground);
width: calc(100% - 12px);
font-family: inherit;
span {
display: grid;
......
import { Message, Group } from "@styled-icons/boxicons-solid";
import { Message, Group, Inbox } from "@styled-icons/boxicons-solid";
import { At } from "@styled-icons/boxicons-regular";
import { useHistory, useLocation } from "react-router";
import styled, { css } from "styled-components";
......@@ -78,6 +79,13 @@ export function BottomNavigation({ lastOpened }: Props) {
</IconButton>
</ConditionalLink>
</Button>
{/*<Button active={friendsActive}>
<ConditionalLink active={friendsActive} to="/friends">
<IconButton>
<Inbox size={25} />
</IconButton>
</ConditionalLink>
</Button>*/}
<Button active={settingsActive}>
<ConditionalLink active={settingsActive} to="/settings">
<IconButton>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment