Clean code, and use progress bars instead of Loading...

This commit is contained in:
2021-03-27 19:59:15 -07:00
parent 7206f99b84
commit a6f56ceaa3
4 changed files with 9 additions and 9 deletions

View File

@@ -18,7 +18,7 @@
{{if .User.ShowPublic}}
{{ range $_, $card := .Config.Users._public_.Cards }}
<div class="column is-half-tablet is-one-quarter-fullhd is-one-third-desktop is-full-mobile">
<div class="card is-flex is-flex-direction-column" style="min-height: 175px; max-height: 175px; overflow: auto">
<div class="card is-fullheight is-scrollable" style="min-height: 175px; max-height: 175px;">
{{dyn_template $card.Type $card}}
</div>
</div>
@@ -26,7 +26,7 @@
{{end}}
{{ range $_, $card := .User.Cards }}
<div class="column is-half-tablet is-one-quarter-fullhd is-one-third-desktop is-full-mobile">
<div class="card is-flex is-flex-direction-column" style="min-height: 175px; max-height: 175px; overflow: auto">
<div class="card is-fullheight is-scrollable" style="min-height: 175px; max-height: 175px; overflow: auto">
{{dyn_template $card.Type $card}}
</div>
</div>