Skip to content

Commit

Permalink
change width of the multiplier buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
dannybunschoten committed Aug 29, 2024
1 parent 8514615 commit a4fb765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/Game.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export default function Game({ children }: { children: React.ReactNode }) {
<button
disabled={multiplier <= 1}
onClick={changeMultiplier.bind(null, -1)}
className="w-auto rounded-lg border-2 border-black px-4 text-[36px] font-bold tracking-[0.08em] text-white transition-colors stroke-and-paint active:scale-95 disabled:border-[#A9A9A9] disabled:bg-[#D3D3D3] disabled:text-[#D3D3D3] disabled:opacity-60"
className="w-16 rounded-lg border-2 border-black px-4 text-[36px] font-bold tracking-[0.08em] text-white transition-colors stroke-and-paint active:scale-95 disabled:border-[#A9A9A9] disabled:bg-[#D3D3D3] disabled:text-[#D3D3D3] disabled:opacity-60"
style={{
background: `radial-gradient(50% 50% at 50% 50%, #FF7B69 0%, #760E17 100%)`,
}}
Expand All @@ -362,7 +362,7 @@ export default function Game({ children }: { children: React.ReactNode }) {
<button
disabled={multiplier >= points}
onClick={changeMultiplier.bind(null, 1)}
className="w-auto rounded-lg border-2 border-black px-4 text-[36px] font-bold tracking-[0.08em] text-white transition-colors stroke-and-paint active:scale-95 disabled:border-[#A9A9A9] disabled:bg-[#D3D3D3] disabled:text-[#D3D3D3] disabled:opacity-60"
className="w-16 rounded-lg border-2 border-black px-4 text-[36px] font-bold tracking-[0.08em] text-white transition-colors stroke-and-paint active:scale-95 disabled:border-[#A9A9A9] disabled:bg-[#D3D3D3] disabled:text-[#D3D3D3] disabled:opacity-60"
style={{
background: `radial-gradient(50% 50% at 50% 50%, #FF7B69 0%, #760E17 100%)`,
}}
Expand Down

0 comments on commit a4fb765

Please sign in to comment.