Add Dino Land logo to start screen modal

This commit is contained in:
OpenClaw Engineer 2026-03-06 15:56:52 -06:00
parent 85e2bbb48b
commit e4a1849669
3 changed files with 15 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -16,6 +16,13 @@
<div id="startScreen">
<div class="panel">
<img
class="start-logo"
src="assets/images/dinoland-logo.png"
alt="Dino Land logo"
width="320"
height="180"
/>
<h1>Start Dino Land</h1>
<form id="startForm">
<label for="startPassword">Password</label>

View File

@ -40,6 +40,14 @@ body {
padding: 20px;
width: min(92vw, 460px);
}
.start-logo {
display: block;
width: min(100%, 320px);
height: auto;
margin: 0 auto 8px;
}
.hidden { display: none !important; }
button, input, select {
font-size: 16px;