Website redesign

This commit is contained in:
eikek
2022-01-27 20:23:15 +01:00
parent 3fc7f54f1a
commit 261d2af9bb
248 changed files with 3519 additions and 1484 deletions

View File

@ -0,0 +1,19 @@
@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;
}
}