diff --git a/CHANGELOG b/CHANGELOG index 76b99fcf..12d66d0c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,12 +2,22 @@ All notable changes to this project will be documented in this file. ### UNRELEASED - new plugin system - fix #17 - - new "publish on telegram" plugin: thanks @fadelkon + - new "publish on telegram" plugin: (thanks @fadelkon) - i18n refactoring - people can now choose the language displayed - fix #171 - fix place "[Object]" issue - #194 - admin could choose a custom fallback image - fix #195 - it is now possible NOT to enter the end time of an event - fix #188 + - Wordpress plugin now supports MU installation + - add nominatim / openstreetmap feature (thanks @gothos) + - improve event import + - add Apple touch icon - fix #200 + - improve navbar layout + - improve event layout + - new hide calendar option + - new hide thumbs from homepage option + - complete oauth2 refactoring + - fix random restart ### 1.5.6 - 22 set '22 diff --git a/assets/style.css b/assets/style.css index d46f4507..55f48432 100644 --- a/assets/style.css +++ b/assets/style.css @@ -9,6 +9,10 @@ li { margin-left: 10px; } +.v-main { + padding-top: 224px !important; +} + .v-dialog .theme--dark.v-card { background-color: #434343; } @@ -21,8 +25,9 @@ li { letter-spacing: normal !important; } -.v-main { - padding-top: 176px !important; +/* https://github.com/vuetifyjs/vuetify/issues/8875#issuecomment-559900683 */ +.v-slide-group__prev { + display: none !important; } .v-toolbar .v-list-item__subtitle, @@ -34,8 +39,8 @@ li { #home { max-width: 1400px; - padding: 0px; - overflow: hidden; + /* padding: 0px; */ + /* overflow: hidden; */ } #events { diff --git a/components/Nav.vue b/components/Appbar.vue similarity index 89% rename from components/Nav.vue rename to components/Appbar.vue index c640cfa4..5c0647c2 100644 --- a/components/Nav.vue +++ b/components/Appbar.vue @@ -1,15 +1,17 @@