Kiosk: remove open/closed pill; center-align scan-to-order slide

This commit is contained in:
Troll (Hermes Agent) 2026-08-31 03:29:24 +00:00
parent abd70d2496
commit 530451cfef
2 changed files with 8 additions and 2 deletions

View file

@ -871,9 +871,17 @@
.booth-page .slide {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
animation: fadeIn 0.8s ease;
}
.booth-page .slide > * {
max-width: 100%;
}
.booth-page .slide.hidden {
display: none;
}

View file

@ -17,10 +17,8 @@
<div class="header">
{% if booth_open %}
<img src="{{ url_for('static', filename='Trollgorithm_booth.jpg') }}" alt="Trollgorithm Theme Song Booth" class="kiosk-banner">
<div class="status-pill open">Booth is Open</div>
{% else %}
<img src="{{ url_for('static', filename='Booth_closed.png') }}" alt="Booth Closed" class="kiosk-banner">
<div class="status-pill closed">Booth is Closed</div>
{% endif %}
</div>