add svg favicon + toolbar logo; set theme before paint
- favicon.svg (beer mug), linked from both entry points and shown in the tablet topbar next to the bar name - inline data-theme in <head> kills the flash of dark on light-mode load - hide the "Pfand zurück" tile when the bar has no Pfand
This commit is contained in:
parent
df513fda68
commit
6a0d30c8b5
5 changed files with 44 additions and 6 deletions
|
|
@ -49,6 +49,7 @@ button {
|
|||
}
|
||||
button:active { background: var(--surface-3); }
|
||||
button:disabled { opacity: 0.4; }
|
||||
button.danger { background: #5a2a2a; border-color: #7a3a3a; color: #fff; }
|
||||
|
||||
/* ---------- Tablet UI (portrait) ---------- */
|
||||
|
||||
|
|
@ -92,6 +93,8 @@ button:disabled { opacity: 0.4; }
|
|||
border-bottom: 1px solid var(--border-soft);
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.topbar .brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
|
||||
.topbar .logo { flex: 0 0 auto; }
|
||||
.topbar .bar-name { font-size: 26px; font-weight: 800; }
|
||||
.topbar .change { font-size: 17px; padding: 10px 14px; }
|
||||
|
||||
|
|
@ -213,7 +216,7 @@ button:disabled { opacity: 0.4; }
|
|||
cursor: grab;
|
||||
}
|
||||
.dnd-item:active { cursor: grabbing; }
|
||||
.dnd-item.drop-target { border-color: #6aa; background: #1a2630; }
|
||||
.dnd-item.drop-target { border-color: #6aa; background: var(--surface-2); }
|
||||
.dnd-item .grip { opacity: 0.4; cursor: grab; user-select: none; }
|
||||
.dnd-item .dnd-name { flex: 1; }
|
||||
.dnd-list li.muted { padding: 6px 8px; }
|
||||
|
|
|
|||
|
|
@ -78,7 +78,10 @@ export function Sale({ config, onChangeBar }: Props) {
|
|||
return (
|
||||
<div class="tablet">
|
||||
<div class="topbar">
|
||||
<div class="bar-name">{bar.name}</div>
|
||||
<div class="brand">
|
||||
<img class="logo" src="/favicon.svg" alt="" width="28" height="28" />
|
||||
<span class="bar-name">{bar.name}</span>
|
||||
</div>
|
||||
<button class="change" onClick={onChangeBar}>Bar wechseln</button>
|
||||
</div>
|
||||
|
||||
|
|
@ -92,10 +95,12 @@ export function Sale({ config, onChangeBar }: Props) {
|
|||
)}
|
||||
</button>
|
||||
))}
|
||||
<button class="drink pfand-return" onClick={addPfandReturn}>
|
||||
<div class="name">Pfand zurück</div>
|
||||
<div class="price">−{formatCents(bar.pfand_cents)}</div>
|
||||
</button>
|
||||
{bar.pfand_cents > 0 && (
|
||||
<button class="drink pfand-return" onClick={addPfandReturn}>
|
||||
<div class="name">Pfand zurück</div>
|
||||
<div class="price">−{formatCents(bar.pfand_cents)}</div>
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div class="cart">
|
||||
|
|
|
|||
Loading…
Reference in a new issue