Browse Source

chore(gui-v2): fix style.scss file

pull/2722/head
braks 2 years ago
parent
commit
e4fa18f446
  1. 36
      packages/nc-gui-v2/assets/style-v2.scss

36
packages/nc-gui-v2/assets/style-v2.scss

@ -1,28 +1,19 @@
html, html,
body, body,
#__nuxt, #__nuxt,
.v-application__wrap { .ant-layout,
@apply color-transition m-0 h-full w-full bg-white dark:(bg-black text-white); main {
@apply m-0 h-full w-full bg-white dark:(bg-black text-white);
} }
a, button { main {
@apply color-transition;
}
.v-main {
@apply w-full h-full;
overflow: hidden;
flex: unset !important;
}
.v-main .v-main__wrap {
@apply flex-0 w-full relative scrollbar-thin-primary; @apply flex-0 w-full relative scrollbar-thin-primary;
overflow-x: hidden; overflow-x: hidden;
} }
nav, nav,
nav .v-list { nav .v-list {
@apply color-transition dark:(bg-gray-900 text-white) @apply dark:(!bg-gray-900 text-white)
} }
.v-divider { .v-divider {
@ -43,8 +34,23 @@ nav .v-list {
@apply opacity-0; @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 { 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 { .v-field__field {

Loading…
Cancel
Save