fix roulette card size not being the same a actual play card size

This commit is contained in:
Vikeo
2024-06-17 14:51:30 +02:00
parent a1f8745509
commit a96b6bc340
8 changed files with 94 additions and 160 deletions

View File

@@ -2,7 +2,7 @@ import { useEffect, useRef } from 'react';
import { useGlobalSettings } from '../../../../Hooks/useGlobalSettings';
import { usePlayers } from '../../../../Hooks/usePlayers';
export const RandomKingSelectWrapper = () => {
export const RandomKingRandomizer = () => {
const { setRandomizingPlayer } = useGlobalSettings();
const randomIntervalRef = useRef<NodeJS.Timeout | null>(null);
@@ -87,7 +87,7 @@ export const RandomKingSelectWrapper = () => {
backgroundImage: `linear-gradient(60deg, ${gradientColors})`,
}}
/>
<p className="relative z-10 text-[5vmax]">PRESS TO SELECT PLAYER</p>
<p className="relative z-10 text-[5vmax]">PRESS TO START</p>
</div>
</div>
);