mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
tweakings
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -11,8 +11,8 @@
|
|||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||||
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
|
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
|
||||||
<title>Roomba Rover</title>
|
<title>Roomba Rover</title>
|
||||||
<script type="module" crossorigin src="/assets/index-CMqFLBAu.js"></script>
|
<script type="module" crossorigin src="/assets/index-DgXpu1o2.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-T_RLfU2D.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-6rdN_Ndl.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
|||||||
@@ -148,7 +148,7 @@ function HudOverlay({
|
|||||||
</div>
|
</div>
|
||||||
{turnTimerText ? (
|
{turnTimerText ? (
|
||||||
<div
|
<div
|
||||||
className={`absolute right-1 top-1 rounded border transition-colors ${
|
className={`absolute right-1 top-1 rounded border ${
|
||||||
turnTimerFlashActive
|
turnTimerFlashActive
|
||||||
? 'border-red-300/90 bg-red-900/80 text-red-100'
|
? 'border-red-300/90 bg-red-900/80 text-red-100'
|
||||||
: 'border-amber-300/80 bg-black/75 text-amber-200'
|
: 'border-amber-300/80 bg-black/75 text-amber-200'
|
||||||
|
|||||||
@@ -698,9 +698,17 @@ export default function VideoTile({
|
|||||||
: 'border-amber-300/80 bg-black/75 text-amber-200'
|
: 'border-amber-300/80 bg-black/75 text-amber-200'
|
||||||
} ${mobileHud ? 'px-2 py-1 text-[0.6rem]' : 'px-2.5 py-1.5 text-[0.72rem]'}`}
|
} ${mobileHud ? 'px-2 py-1 text-[0.6rem]' : 'px-2.5 py-1.5 text-[0.72rem]'}`}
|
||||||
>
|
>
|
||||||
<div className="font-semibold">Not your turn to drive!</div>
|
<div className={noticeFlashActive ? 'font-semibold text-red-50' : 'font-semibold text-white'}>
|
||||||
{notTurnCountdownText ? <div>{notTurnCountdownText}</div> : null}
|
Not your turn to drive!
|
||||||
{showPreviewReason ? <div>Video switched to preview mode to save bandwidth.</div> : null}
|
</div>
|
||||||
|
{notTurnCountdownText ? (
|
||||||
|
<div className={noticeFlashActive ? 'text-red-100/95' : 'text-amber-100'}>{notTurnCountdownText}</div>
|
||||||
|
) : null}
|
||||||
|
{showPreviewReason ? (
|
||||||
|
<div className={noticeFlashActive ? 'text-red-100/90' : 'text-amber-200/85'}>
|
||||||
|
Video switched to preview mode to save bandwidth.
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
<div className="pointer-events-auto mt-0.5">
|
<div className="pointer-events-auto mt-0.5">
|
||||||
<SocialButton
|
<SocialButton
|
||||||
id="discord"
|
id="discord"
|
||||||
|
|||||||
Reference in New Issue
Block a user