Skip to content

Commit

Permalink
Fix oversight in background property
Browse files Browse the repository at this point in the history
I could have sworn that read "background-color". Apparently it didn't.
WHOOPS! Well, that's fixed now.
  • Loading branch information
glmdgrielson committed Nov 5, 2024
1 parent cbf4d40 commit ee8a602
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ export function CircleTextField(
// Fixes issue #414
"font-family": "monospace",
"outline": "none",
"background": props.highlight ? miniTheme.textPrimary : "inherit",
"background": theme.palette.action.hover,
"background": miniTheme.boxBackgroundColor,
"&&": {
color: "inherit",
},
Expand Down

0 comments on commit ee8a602

Please sign in to comment.