Skip to content

Commit

Permalink
bump min disc detail button size up a notch
Browse files Browse the repository at this point in the history
  • Loading branch information
cdleveille committed Jun 9, 2024
1 parent 28532cd commit 840e8d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ h1 {
height: 6vmin !important;
max-width: 3rem !important;
max-height: 3rem !important;
min-width: 2rem !important;
min-height: 2rem !important;
min-width: 2.5rem !important;
min-height: 2.5rem !important;
}

.add-or-remove-btn {
Expand Down
2 changes: 1 addition & 1 deletion src/components/disc/DiscDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const DiscDetail = ({ disc }: DiscDetailProps) => {

const isDiscInBag = selectedBag?.discs.includes(id) ?? false;

const iconFontSize = "max(1rem, min(2rem, 4vmin))";
const iconFontSize = "max(1.5rem, min(2rem, 4vmin))";

return (
<div
Expand Down

0 comments on commit 840e8d5

Please sign in to comment.