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-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'
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user