Skip to content

Commit

Permalink
Fix Select font size and color
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinkipruto committed Nov 29, 2024
1 parent e243471 commit 8821285
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/climatemappedafrica/src/components/Select/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,12 @@ function Input({
lg: typography.pxToRem(185),
},
background: palette.background.paper,
color: "#959696",
borderStyle: "none",
borderRadius: 2,
paddingBottom: typography.pxToRem(15),
paddingTop: typography.pxToRem(15),
fontSize: typography.caption.fontSize,
fontSize: `${typography.caption.fontSize} !important`,
"&:focus": {
borderRadius: 2,
background: palette.background.paper,
Expand All @@ -142,7 +143,7 @@ function Input({
display: "none",
},
"& .MuiSelect-filled": {
color: value ? "#959696" : "#666666",
color: value ? "#959696" : "unset",
},
...SelectProps,
})}
Expand Down

0 comments on commit 8821285

Please sign in to comment.