mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
20 lines
338 B
CSS
20 lines
338 B
CSS
@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;
|
|
}
|
|
|
|
}
|