tweaks and padding fix

This commit is contained in:
legop3
2026-01-07 21:57:57 -05:00
parent f7dd4f7b89
commit 4005ced6f9
7 changed files with 8 additions and 8 deletions
File diff suppressed because one or more lines are too long
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-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" /> <meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" />
<title>Multi Roomba Rover</title> <title>Multi Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-CbdlI1FK.js"></script> <script type="module" crossorigin src="/assets/index-D6SoVC4Y.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BcJSVcRR.css"> <link rel="stylesheet" crossorigin href="/assets/index-Blc6K3HE.css">
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
+1 -1
View File
@@ -79,7 +79,7 @@ function buildEmbedCopy(state, camera) {
} else if (roversOnline === 0) { } else if (roversOnline === 0) {
title = 'Rovers offline - check back soon'; title = 'Rovers offline - check back soon';
} else if (driverCount > 0) { } else if (driverCount > 0) {
title = 'Rover action live - take the controls'; title = 'Rovers in use - drive a rover';
} else if (mode === 'turns') { } else if (mode === 'turns') {
title = 'Controls open - jump in'; title = 'Controls open - jump in';
} else { } else {
+1 -1
View File
@@ -31,7 +31,7 @@ export default function NicknameForm({ compact = false }) {
} }
return ( return (
<form className="flex gap-0.5" onSubmit={handleSave}> <form className="flex w-full gap-0.5" onSubmit={handleSave}>
<input <input
className="field-input flex-1" className="field-input flex-1"
value={nicknameInput} value={nicknameInput}
+2 -2
View File
@@ -132,12 +132,12 @@ export default function UserListPanel({ hideNicknameForm = false, hideHeader = f
{!hideNicknameForm && ( {!hideNicknameForm && (
<div className="space-y-0.5"> <div className="space-y-0.5">
<div className="flex items-stretch gap-0.5"> <div className="flex items-stretch gap-0.5">
<div className="flex min-w-0 flex-1"> <div className="flex w-1/2 min-w-0">
<div className="surface flex w-full items-center"> <div className="surface flex w-full items-center">
<NicknameForm /> <NicknameForm />
</div> </div>
</div> </div>
<div className="flex w-1/2 min-w-[8rem] flex-col gap-0.5"> <div className="flex w-1/2 flex-col gap-0.5">
<DiscordInviteButton /> <DiscordInviteButton />
<KoFiButton /> <KoFiButton />
</div> </div>