mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
tweaks and padding fix
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
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="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>
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user