docspell/website/styles/custom-utilities.css

20 lines
338 B
CSS
Raw Normal View History

2022-01-27 19:23:15 +00:00
@layer utilities {
.disabled {
@apply opacity-50 cursor-not-allowed;
}
.h-screen-12 {
height: calc(100vh - 3rem);
}
.max-h-screen-12 {
max-height: calc(100vh - 3rem);
}
.dark-block {
@apply hidden dark:block;
}
.light-block {
@apply block dark:hidden;
}
}