tweakings

This commit is contained in:
legop3
2026-05-12 15:07:37 -04:00
parent 13c5ce3157
commit 326208ed1d
5 changed files with 23 additions and 15 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -11,8 +11,8 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
<title>Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-CMqFLBAu.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-T_RLfU2D.css">
<script type="module" crossorigin src="/assets/index-DgXpu1o2.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-6rdN_Ndl.css">
</head>
<body>
<div id="root"></div>
@@ -148,7 +148,7 @@ function HudOverlay({
</div>
{turnTimerText ? (
<div
className={`absolute right-1 top-1 rounded border transition-colors ${
className={`absolute right-1 top-1 rounded border ${
turnTimerFlashActive
? 'border-red-300/90 bg-red-900/80 text-red-100'
: 'border-amber-300/80 bg-black/75 text-amber-200'
+11 -3
View File
@@ -698,9 +698,17 @@ export default function VideoTile({
: '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]'}`}
>
<div className="font-semibold">Not your turn to drive!</div>
{notTurnCountdownText ? <div>{notTurnCountdownText}</div> : null}
{showPreviewReason ? <div>Video switched to preview mode to save bandwidth.</div> : null}
<div className={noticeFlashActive ? 'font-semibold text-red-50' : 'font-semibold text-white'}>
Not your turn to drive!
</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">
<SocialButton
id="discord"