Skip to content

Commit

Permalink
Rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbmatter committed Feb 1, 2025
1 parent 97a7542 commit 272cf40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ apply checkbox td hack to buttons too
- bootstrap utility?

season range highlighting like sports-reference on click highlight
- select rounded corners
- show error in age col
- don't disable selects
- remove artificial delay
Expand Down
5 changes: 4 additions & 1 deletion src/ui/views/Player/StatsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ export const StatsTable = ({
value: (
<select
key={i}
className="form-select form-select-sm"
className={clsx(
"form-select form-select-sm rounded-0",
i === 0 ? "rounded-start-1" : "rounded-end-1",
)}
value={rangeFooterState.seasonRange[i]}
disabled={rangeFooterState.type === "loading"}
onChange={(event) => {
Expand Down

0 comments on commit 272cf40

Please sign in to comment.