This commit is contained in:
Viktor Rådberg
2024-01-13 15:02:33 +01:00
parent 4ecb83060d
commit 38e4cb8e8c
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ const PlayWrapper = twc.div`relative z-0 max-w-fit max-h-fit portrait:rotate-90`
const EmergencyResetButton = () => {
const { goToStart } = useGlobalSettings();
const EmergencyResetButton = twc.button`w-[100vmax] h-[100vmin] absolute top-0 z-[-1] bg-background-default`;
const EmergencyResetButton = twc.button`w-[100dvmax] h-[100dvmin] absolute top-0 z-[-1] bg-background-default`;
const Paragraph = twc.p`text-[4vmax] text-text-secondary`;
return (

View File

@@ -4,7 +4,7 @@ import { Orientation } from '../../Types/Settings';
import { Player } from '../Player/Player';
import { twc } from 'react-twc';
const MainWrapper = twc.div`w-[100vmax] h-[100vmin] w-[100dvmax] h-[100dvmin] overflow-hidden`;
const MainWrapper = twc.div`w-[100dvmax] h-[100dvmin] overflow-hidden`;
export const Play = () => {
const { players } = usePlayers();