CHANGE: added report section

This commit is contained in:
2025-02-26 15:05:50 +01:00
parent 0ddca8b9ce
commit 54104d5a0e
15 changed files with 376 additions and 96 deletions

View File

@@ -562,9 +562,6 @@
.mt-1 {
margin-top: calc(var(--spacing) * 1);
}
.-mb-1 {
margin-bottom: calc(var(--spacing) * -1);
}
.mb-2 {
margin-bottom: calc(var(--spacing) * 2);
}
@@ -666,9 +663,6 @@
.justify-center {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.gap-2 {
gap: calc(var(--spacing) * 2);
}
@@ -695,6 +689,11 @@
.justify-self-end {
justify-self: flex-end;
}
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.overflow-hidden {
overflow: hidden;
}
@@ -777,6 +776,9 @@
.text-neutral-800 {
color: var(--color-neutral-800);
}
.text-red-500 {
color: var(--color-red-500);
}
.text-red-600 {
color: var(--color-red-600);
}
@@ -858,6 +860,13 @@
}
}
}
.hover\:text-accent {
&:hover {
@media (hover: hover) {
color: var(--color-accent);
}
}
}
.hover\:text-white {
&:hover {
@media (hover: hover) {