mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Fix: Set font-family: inherit on auto-complete
This commit is contained in:
parent
76f43a4b98
commit
2f60013935
2 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
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>
|
||||
|
|
Loading…
Reference in a new issue