feat: Adds level field to rooms, updates urls to point to public mirror of the project.
Some checks failed
CI / Linux Tests (push) Failing after 15s

This commit is contained in:
2026-02-10 12:07:44 -05:00
parent 980d99e40b
commit dc9f51c04f
28 changed files with 464 additions and 104 deletions

View File

@@ -6920,6 +6920,12 @@
}
}
}
.grid-flow-col {
grid-auto-flow: column;
}
.grid-flow-row {
grid-auto-flow: row;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
@@ -8753,6 +8759,9 @@
color: var(--color-warning);
}
}
.text-accent {
color: var(--color-accent);
}
.text-base-content {
color: var(--color-base-content);
}
@@ -9732,6 +9741,31 @@
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.md\:justify-between {
@media (width >= 48rem) {
justify-content: space-between;
}
}
.md\:place-self-center {
@media (width >= 48rem) {
place-self: center;
}
}
.md\:place-self-end {
@media (width >= 48rem) {
place-self: end;
}
}
.md\:place-self-start {
@media (width >= 48rem) {
place-self: start;
}
}
.md\:justify-self-end {
@media (width >= 48rem) {
justify-self: flex-end;
}
}
.lg\:drawer-open {
@media (width >= 64rem) {
@layer daisyui.l1.l2.l3 {