Skip to content

Commit

Permalink
Revamp numeric text field
Browse files Browse the repository at this point in the history
This SHOULD fix bug #414, in a way that doesn't look too bad.
  • Loading branch information
glmdgrielson committed Nov 4, 2024
1 parent c684b10 commit 9900754
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,11 @@ export function CircleTextField(
"cursor": cursor,
"width": "3rem",
"height": "3rem",
"borderRadius": "50%",
"border": `2px solid ${
props.borderColor ?? miniTheme.textPrimary
}`,
// Fixes issue #414
"font-family": "monospace",
"outline": "none",
"background": props.highlight ? miniTheme.textPrimary : "inherit",
"background": theme.palette.action.hover,

Check failure on line 119 in lib/routes/Character/components/CharacterDialog/components/CircleTextField.tsx

View workflow job for this annotation

GitHub Actions / build

An object literal cannot have multiple properties with the same name.
"&&": {
color: "inherit",
},
Expand Down

0 comments on commit 9900754

Please sign in to comment.