Remove class for main
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 15s

This commit is contained in:
2026-03-25 21:52:41 +00:00
parent ac5f47fcaa
commit fabd92bf36

View File

@@ -3,7 +3,9 @@
/* Route transitions */
.slide-enter-active,
.slide-leave-active {
transition: transform 0.3s ease, opacity 0.3s ease;
transition:
transform 0.3s ease,
opacity 0.3s ease;
}
.slide-enter-from {
transform: translateX(30px);
@@ -16,7 +18,6 @@
/* PRINTING */
@media print {
.no-print,
.no-print * {
display: none !important;
@@ -102,10 +103,6 @@ body {
background-color: var(--bg_secondary);
}
main {
@apply overflow-y-scroll w-full h-full p-10;
}
input {
@apply text-secondary border-primary border;
}
@@ -306,9 +303,11 @@ td {
--blur: 0%;
background-color: var(--bg_secondary);
background-image: radial-gradient(circle at center,
var(--bg_primary) var(--dot_size),
transparent var(--blur));
background-image: radial-gradient(
circle at center,
var(--bg_primary) var(--dot_size),
transparent var(--blur)
);
background-size: var(--bg_size) var(--bg_size);
background-position: 0 0;
}