From 6ffb98950a8d1f434fc0bcc945c3e00522e01265 Mon Sep 17 00:00:00 2001 From: Nikita Krupin Date: Tue, 5 Jul 2022 21:07:12 -0700 Subject: [PATCH] post-lint bugfixes --- NUXT/components/playlistCard.vue | 14 ++------------ NUXT/layouts/default.vue | 8 ++++++++ NUXT/pages/mods/theme.vue | 21 +++++++-------------- NUXT/pages/mods/tweaks.vue | 15 ++++----------- ios/App/Podfile | 20 ++++++++++---------- 5 files changed, 31 insertions(+), 47 deletions(-) diff --git a/NUXT/components/playlistCard.vue b/NUXT/components/playlistCard.vue index dec4bf6..b455604 100644 --- a/NUXT/components/playlistCard.vue +++ b/NUXT/components/playlistCard.vue @@ -30,18 +30,8 @@ }" >
420
mdi-playlist-play diff --git a/NUXT/layouts/default.vue b/NUXT/layouts/default.vue index e1ff18b..344f5a5 100644 --- a/NUXT/layouts/default.vue +++ b/NUXT/layouts/default.vue @@ -245,6 +245,14 @@ export default { margin: 0 !important; } +.container-max-height { + min-height: calc( + 100vh - 8rem - env(safe-area-inset-top) - env(safe-area-inset-bottom) + ) !important; +} +.background-opaque { + background: linear-gradient(var(--v-background-base) -1000%, #00000000 1000%); +} .border-primary { border: 2px solid var(--v-primary-base) !important; } diff --git a/NUXT/pages/mods/theme.vue b/NUXT/pages/mods/theme.vue index b6655bb..de7d0db 100644 --- a/NUXT/pages/mods/theme.vue +++ b/NUXT/pages/mods/theme.vue @@ -1,14 +1,7 @@