40 lines
607 B
CSS
40 lines
607 B
CSS
html,
|
|
body,
|
|
#app {
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html.dark {
|
|
background: #121212;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
.scrollbar-thin::-webkit-scrollbar {
|
|
@apply w-2;
|
|
}
|
|
|
|
.scrollbar-thin::-webkit-scrollbar-track {
|
|
@apply rounded-full bg-gray-100 dark:bg-gray-700;
|
|
}
|
|
|
|
.scrollbar-thin::-webkit-scrollbar-thumb {
|
|
@apply rounded-full bg-gray-300 dark:bg-gray-600;
|
|
}
|
|
|
|
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-gray-500;
|
|
}
|
|
|
|
.animation-delay-200 {
|
|
animation-delay: 200ms;
|
|
}
|
|
.animation-delay-400 {
|
|
animation-delay: 400ms;
|
|
}
|
|
|
|
.overflow-wrap-anywhere {
|
|
overflow-wrap: anywhere;
|
|
}
|