From e4fa18f44627b349f717c651c8ef56e5fb1ab476 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Mon, 18 Jul 2022 18:42:54 +0200 Subject: [PATCH] chore(gui-v2): fix style.scss file --- packages/nc-gui-v2/assets/style-v2.scss | 36 ++++++++++++++----------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/packages/nc-gui-v2/assets/style-v2.scss b/packages/nc-gui-v2/assets/style-v2.scss index 0e87d5b66f..3e651f3034 100644 --- a/packages/nc-gui-v2/assets/style-v2.scss +++ b/packages/nc-gui-v2/assets/style-v2.scss @@ -1,28 +1,19 @@ html, body, #__nuxt, -.v-application__wrap { - @apply color-transition m-0 h-full w-full bg-white dark:(bg-black text-white); +.ant-layout, +main { + @apply m-0 h-full w-full bg-white dark:(bg-black text-white); } -a, button { - @apply color-transition; -} - -.v-main { - @apply w-full h-full; - overflow: hidden; - flex: unset !important; -} - -.v-main .v-main__wrap { +main { @apply flex-0 w-full relative scrollbar-thin-primary; overflow-x: hidden; } nav, nav .v-list { - @apply color-transition dark:(bg-gray-900 text-white) + @apply dark:(!bg-gray-900 text-white) } .v-divider { @@ -43,8 +34,23 @@ nav .v-list { @apply opacity-0; } +.slide-enter-active, +.slide-leave-active { + @apply transition-all duration-200 ease-in-out; + transform: translate(100%, 0); +} + +.slide-enter, +.slide-leave-active { + transform: translate(-100%, 0); +} + a { - @apply cursor-pointer prose text-primary underline hover:opacity-75 dark:(text-secondary) hover:(opacity-75); + @apply prose text-primary underline hover:opacity-75 dark:(text-secondary) hover:(opacity-75); +} + +h1, h2, h3, h4, h5, h6 { + @apply text-black dark:(text-white); } .v-field__field {