refactoring html and css

This commit is contained in:
bronkuu 2026-06-15 14:43:50 +02:00
parent 8194cea85e
commit a91b196e64
16 changed files with 1299 additions and 1383 deletions

View file

@ -7,12 +7,12 @@ templ Confirmation(title string, id int) {
}
templ ConfirmationBody(id int) {
<div class="confirmation">
<span class="material-symbols-outlined" style="font-size:48px;color:var(--success-text)">check_circle</span>
<section class="confirmation">
<span class="material-symbols-outlined" style="font-size:3rem;color:var(--success-text)">check_circle</span>
<h2>{ strconv.Itoa(id) } — zapisano</h2>
<a href="/orders" class="btn btn-primary" style="margin-top:16px">
<a href="/orders" class="btn primary" style="margin-top:1rem">
<span class="material-symbols-outlined">arrow_back</span>
Powrót do zamówień
</a>
</div>
</section>
}