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
Some checks failed
CI / Linux Tests (push) Failing after 15s
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user