From c4f48701662f4f8739490567d099c098a834f049 Mon Sep 17 00:00:00 2001 From: Mauro Mura Date: Tue, 17 Oct 2023 14:59:39 +0200 Subject: [PATCH] adjusted quota component for mobile view --- css/apps/apps.scss | 4 ++-- src/components/FilesSettings.vue | 6 ------ 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/css/apps/apps.scss b/css/apps/apps.scss index 19c9e852..b3037836 100644 --- a/css/apps/apps.scss +++ b/css/apps/apps.scss @@ -2,12 +2,12 @@ $breakpoint-mobile: 1024px; $breakpoint-mobile-small: 480px; :root { - --body-height: calc(100% - 144px - var(--body-container-margin)); + --body-height: calc(100% - 158px - var(--body-container-margin)); } @media screen and (max-width: $breakpoint-mobile-small) { :root { - --body-height: calc(100% - 132px - var(--body-container-margin)); + --body-height: calc(100% - 152px - var(--body-container-margin)); } } diff --git a/src/components/FilesSettings.vue b/src/components/FilesSettings.vue index 23541bdc..d7ddafee 100644 --- a/src/components/FilesSettings.vue +++ b/src/components/FilesSettings.vue @@ -21,10 +21,4 @@ export default { .files-settings { padding: 0 1.5rem; } - -@media only screen and (max-width: 1024px) { - .files-settings { - padding-bottom: 4rem; - } -}