diff options
| author | Zephyrrus <[email protected]> | 2021-01-07 23:55:37 +0200 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2021-01-07 23:55:37 +0200 |
| commit | 925080f6a08a1f1515143db1bd6aef8109f5fb67 (patch) | |
| tree | 298476e0f2aea59422bcc46fb1e1ce8bb4f19c18 /src/site/components/footer/Footer.vue | |
| parent | chore: revert nuxt update, it breaks SSR in development mode, not worth it. (diff) | |
| download | host.fuwn.me-925080f6a08a1f1515143db1bd6aef8109f5fb67.tar.xz host.fuwn.me-925080f6a08a1f1515143db1bd6aef8109f5fb67.zip | |
chore: refactor stats generator to use an enum for types
fix: saved data not being converted to JSON automatically when using SQLite (and possibly MSSQL)
feat: display when a stat was generated in the section's header
fix: not being able to click through the footer (sorry IE11 users, you still won't be able to click through it)
fix: add is-mobile to columns so they don't stack on top of each other
feat: add text next to the NSFW toggle and make it look like the elements around it (begone round iOS edges)
Diffstat (limited to 'src/site/components/footer/Footer.vue')
| -rw-r--r-- | src/site/components/footer/Footer.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/site/components/footer/Footer.vue b/src/site/components/footer/Footer.vue index 96774e7..0c77603 100644 --- a/src/site/components/footer/Footer.vue +++ b/src/site/components/footer/Footer.vue @@ -72,6 +72,9 @@ export default { <style lang="scss" scoped> @import '~/assets/styles/_colors.scss'; footer { + pointer-events: none; + touch-action: none; + @media screen and (min-width: 1025px) { position: fixed; bottom: 0; @@ -84,6 +87,9 @@ export default { .container { .column { + pointer-events: auto; + touch-action: auto; + text-align: center; @media screen and (min-width: 1025px) { margin-right: 2rem; |