mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-13 18:59:22 -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;
|
background: transparent;
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
width: calc(100% - 12px);
|
width: calc(100% - 12px);
|
||||||
|
font-family: inherit;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
display: grid;
|
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 { useHistory, useLocation } from "react-router";
|
||||||
import styled, { css } from "styled-components";
|
import styled, { css } from "styled-components";
|
||||||
|
|
||||||
|
@ -78,6 +79,13 @@ export function BottomNavigation({ lastOpened }: Props) {
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</ConditionalLink>
|
</ConditionalLink>
|
||||||
</Button>
|
</Button>
|
||||||
|
{/*<Button active={friendsActive}>
|
||||||
|
<ConditionalLink active={friendsActive} to="/friends">
|
||||||
|
<IconButton>
|
||||||
|
<Inbox size={25} />
|
||||||
|
</IconButton>
|
||||||
|
</ConditionalLink>
|
||||||
|
</Button>*/}
|
||||||
<Button active={settingsActive}>
|
<Button active={settingsActive}>
|
||||||
<ConditionalLink active={settingsActive} to="/settings">
|
<ConditionalLink active={settingsActive} to="/settings">
|
||||||
<IconButton>
|
<IconButton>
|
||||||
|
|
Loading…
Reference in a new issue