Skip to content

Commit

Permalink
fix: styling
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhickey committed Nov 15, 2024
1 parent 601dbb2 commit a59419e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,5 +202,36 @@ export const compassTheme = createTheme({
}),
},
},
MuiSelect: {
styleOverrides: {
root: {
"& .MuiOutlinedInput-notchedOutline": {
borderColor: "var(--primary)",
borderWidth: "1px",
},
"&.Mui-focused": {
"& .MuiOutlinedInput-notchedOutline": {
borderColor: "var(--primary)",
borderWidth: "2px",
},
},
"&:hover:not(.Mui-focused)": {
"& .MuiOutlinedInput-notchedOutline": {
borderColor: "var(--grey-10)",
},
},
},
},
},
MuiInputLabel: {
styleOverrides: {
root: {
color: "var(--grey-10)",
"&.Mui-focused": {
color: "var(--primary)",
},
},
},
},
},
});

0 comments on commit a59419e

Please sign in to comment.