diff options
| author | Zephyrrus <[email protected]> | 2020-06-29 20:02:47 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-06-29 20:02:47 +0300 |
| commit | ac037c773ef5f15372c6999445a2efe00034c0c0 (patch) | |
| tree | 94ff8cfad575421add06834100a2343eba6a3f73 /src/site/pages/a | |
| parent | misc: remove patreon. sorry. (diff) | |
| download | host.fuwn.me-ac037c773ef5f15372c6999445a2efe00034c0c0.tar.xz host.fuwn.me-ac037c773ef5f15372c6999445a2efe00034c0c0.zip | |
fix: Remove hero and hero body and use sections and containers instead
Hero is meant to be used as a full-width banner to showcare or present somethign, not to contain the entire content of the webpage
Diffstat (limited to 'src/site/pages/a')
| -rw-r--r-- | src/site/pages/a/_identifier.vue | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/src/site/pages/a/_identifier.vue b/src/site/pages/a/_identifier.vue index ea36852..24d172b 100644 --- a/src/site/pages/a/_identifier.vue +++ b/src/site/pages/a/_identifier.vue @@ -16,9 +16,9 @@ </style> <template> - <section class="hero is-fullheight"> + <section class="section is-fullheight"> <template v-if="files && files.length"> - <div class="hero-body align-top"> + <div class="align-top"> <div class="container"> <h1 class="title">{{ name }}</h1> <h2 class="subtitle">Serving {{ files ? files.length : 0 }} files</h2> @@ -27,23 +27,19 @@ <hr> </div> </div> - <div class="hero-body"> - <div class="container"> - <Grid v-if="files && files.length" - :files="files" - :isPublic="true" - :width="200" - :enableSearch="false" - :enableToolbar="false" /> - </div> + <div class="container"> + <Grid v-if="files && files.length" + :files="files" + :isPublic="true" + :width="200" + :enableSearch="false" + :enableToolbar="false" /> </div> </template> <template v-else> - <div class="hero-body"> - <div class="container"> - <h1 class="title">:(</h1> - <h2 class="subtitle">This album seems to be empty</h2> - </div> + <div class="container"> + <h1 class="title">:(</h1> + <h2 class="subtitle">This album seems to be empty</h2> </div> </template> </section> |