Skip to content

Commit

Permalink
Merge branch 'next' into fix/nx-modules-not-found
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik authored Mar 8, 2024
2 parents e6d7a6c + ff88c99 commit caae3b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/design-system/custom-select/CustomSelect.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const getInputWrapperStyles = (theme: MantineTheme): CSSObject => ({
border: `0.0625rem solid ${theme.colorScheme === 'dark' ? theme.colors.dark[4] : theme.colors.gray[4]}`,

':focus-within': {
borderColor: colors.blue,
borderColor: theme.colorScheme === 'dark' ? theme.colors.blue[8] : theme.colors.blue[6],
},
backgroundColor: theme.colorScheme === 'dark' ? colors.BGPrimaryDark : colors.BGPrimaryLight,
'&[data-haslabel="true"]': {
Expand Down Expand Up @@ -68,7 +68,7 @@ const getLabelStyles = (theme: MantineTheme): CSSObject => ({
...theme.fn.fontStyles(),
fontWeight: 500,
fontSize: getSize({ size: 'sm', sizes: theme.fontSizes }),
color: theme.colorScheme === 'dark' ? theme.colors.dark[3] : theme.colors.gray[9],
color: theme.colorScheme === 'dark' ? theme.colors.dark[0] : theme.colors.gray[9],
});
const getSelectItemsWrapper = (theme: MantineTheme): CSSObject => ({
padding: 0,
Expand Down

0 comments on commit caae3b2

Please sign in to comment.