web: fix spacing/indent (#1423)

web/index.templ CSS contains a mix bag of tab/space along with unaligned
inner CSS. This commit brings consistency
This commit is contained in:
Bertrand Jacquin 2026-01-25 02:27:16 +00:00 committed by GitHub
parent d2bc5cadb9
commit 09f6f4b153
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 11 deletions

View file

@ -40,16 +40,16 @@ templ base(title string, body templ.Component, impressum *config.Impressum, chal
}
#progress {
display: none;
width: 90%;
width: min(20rem, 90%);
height: 2rem;
border-radius: 1rem;
overflow: hidden;
margin: 1rem 0 2rem;
outline-offset: 2px;
outline: #b16286 solid 4px;
}
display: none;
width: 90%;
width: min(20rem, 90%);
height: 2rem;
border-radius: 1rem;
overflow: hidden;
margin: 1rem 0 2rem;
outline-offset: 2px;
outline: #b16286 solid 4px;
}
.bar-inner {
background-color: #b16286;