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/index.vue | |
| 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/index.vue')
| -rw-r--r-- | src/site/pages/index.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/site/pages/index.vue b/src/site/pages/index.vue index 0617098..088d1ba 100644 --- a/src/site/pages/index.vue +++ b/src/site/pages/index.vue @@ -17,7 +17,7 @@ </div> </div> </div> - <div class="container"> + <div class="container uploader"> <Uploader v-if="config.publicMode || (!config.publicMode && loggedIn)" /> <div v-else> This site has disabled public uploads. You need an account. @@ -79,4 +79,8 @@ export default { } } } + + .uploader { + margin-top: 2rem; + } </style> |