Skip to content
Snippets Groups Projects
Unverified Commit 6f23e1de authored by Oisin Coveney's avatar Oisin Coveney Committed by GitHub
Browse files

Add explicit font size for Search Bar (#33980)

parent 14d4665c
Branches
Tags
No related merge requests found
......@@ -73,8 +73,9 @@ export const SearchInputContainer = styled.div<{ isActive: boolean }>`
export const SearchInput = styled.input<{ isActive: boolean }>`
background-color: transparent;
border: none;
color: ${color("text-dark")};
color: ${({ theme }) => theme.colors.text[2]};
font-weight: 700;
font-size: 0.875rem;
width: 100%;
......@@ -83,7 +84,7 @@ export const SearchInput = styled.input<{ isActive: boolean }>`
}
&::placeholder {
color: ${color("text-dark")};
color: ${({ theme }) => theme.colors.text[2]};
}
${breakpointMinSmall} {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment