mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-09 10:15:26 +00:00
Fix: Set font-family: inherit on auto-complete
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user