feat: dark mode input revamp (#6546)

This commit is contained in:
Anoop M D
2025-12-29 22:37:49 +05:30
committed by GitHub
parent 0d536fb365
commit 6d77cacbc4
64 changed files with 324 additions and 239 deletions

View File

@@ -3,7 +3,7 @@ import { rgba } from 'polished';
const Wrapper = styled.div`
min-width: 160px;
font-size: ${(props) => props.theme.font.size.base};
font-size: ${(props) => props.theme.font.size.sm};
color: ${(props) => props.theme.dropdown.color};
background-color: ${(props) => props.theme.dropdown.bg};
${(props) =>
@@ -53,7 +53,7 @@ const Wrapper = styled.div`
cursor: pointer;
border-radius: 6px;
margin: 0.0625rem 0;
font-size: 0.8125rem;
font-size: ${(props) => props.theme.font.size.sm};
&.active {
color: ${(props) => props.theme.colors.text.yellow} !important;