mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
462 B
29 lines
462 B
html, |
|
body, |
|
#__nuxt, |
|
.v-application__wrap { |
|
@apply m-0 h-[100vh] w-[100vw] bg-white dark:(bg-black text-white); |
|
} |
|
|
|
nav, |
|
nav .v-list { |
|
@apply dark:(bg-gray-900 text-white) |
|
} |
|
|
|
.v-divider { |
|
@apply dark:bg-white |
|
} |
|
|
|
.page-enter-active, |
|
.page-leave-active, |
|
.layout-enter-active, |
|
.layout-leave-active { |
|
@apply transition-opacity duration-300 ease-in-out; |
|
} |
|
|
|
.page-enter, |
|
.page-leave-active, |
|
.layout-enter, |
|
.layout-leave-active { |
|
@apply opacity-0; |
|
}
|
|
|