27 lines
No EOL
509 B
CSS
27 lines
No EOL
509 B
CSS
|
|
|
|
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
|
|
[data-theme="dark"] {
|
|
html { @apply bg-white text-neutral-900; }
|
|
html.dark { @apply bg-neutral-950 text-neutral-100; }
|
|
|
|
}
|
|
|
|
/* Disable all animations, transitions, and smooth scrolling app-wide */
|
|
html,
|
|
body {
|
|
scroll-behavior: auto !important;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation: none !important;
|
|
transition: none !important;
|
|
}
|
|
|
|
.document-page {
|
|
@apply max-w-4xl mx-auto bg-white relative p-8 border-1 border-neutral-900 dark:border-neutral-100;
|
|
} |