diff --git a/src/App.tsx b/src/App.tsx index 8d8870d..2e15be0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -149,11 +149,11 @@ function App() { // --- UI --- return ( -
+

Scratch Card Game

-
Money: ${formatter.format(money)}
-
Gubble Points: {formatter.format(gubblePoints)}
+
Money: ${formatter.format(money)}
+
Gubble Points: {formatter.format(gubblePoints)}
= ({ card, setCard, setMoney, setGubblePoints, u { 'notation': 'compact' } ) return ( -
-
{card.tier?.name} Scratch Card
+
+
{card.tier?.name} Scratch Card
{card.winningNumbers.map((num, i) => ( -
+
{num}
))} @@ -38,7 +38,7 @@ const Card: React.FC = ({ card, setCard, setMoney, setGubblePoints, u ))}
-
Scratch each field one at a time. Winnings: 1-2 = 50%, 3-4 = 80%, 5-6 = 120% of card price.
+
Scratch each field one at a time. Winnings: 1-2 = 50%, 3-4 = 80%, 5-6 = 120% of card price.
); }; diff --git a/src/components/GubbleStore.tsx b/src/components/GubbleStore.tsx index 0ec33c3..5098e35 100644 --- a/src/components/GubbleStore.tsx +++ b/src/components/GubbleStore.tsx @@ -27,21 +27,21 @@ const UPGRADE_LIST: { key: keyof Upgrades; label: string; cost: number; descript const GubbleStore: React.FC = ({ isOpen, onClose, gubblePoints, upgrades, onBuyUpgrade }) => { if (!isOpen) return null; return ( -
-
- -

Gubble Point Store

-
Gubble Points: {gubblePoints}
+
+
+ +

Gubble Point Store

+
Gubble Points: {gubblePoints}
    {UPGRADE_LIST.map(upg => ( -
  • +
  • -
    {upg.label}
    -
    {upg.description}
    -
    Cost: {upg.cost}
    +
    {upg.label}
    +
    {upg.description}
    +
    Cost: {upg.cost}