CHANGE: added pause time in frontend

This commit is contained in:
2025-02-23 10:08:41 +01:00
parent f73cf0884c
commit 64468271d1
5 changed files with 178 additions and 123 deletions

View File

@@ -642,6 +642,9 @@
.resize {
resize: both;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
@@ -654,6 +657,9 @@
.flex-row {
flex-direction: row;
}
.content-end {
align-content: flex-end;
}
.items-center {
align-items: center;
}
@@ -691,6 +697,12 @@
border-color: var(--color-neutral-400);
}
}
.self-end {
align-self: flex-end;
}
.justify-self-end {
justify-self: flex-end;
}
.overflow-hidden {
overflow: hidden;
}
@@ -777,6 +789,9 @@
.text-neutral-500 {
color: var(--color-neutral-500);
}
.text-neutral-600 {
color: var(--color-neutral-600);
}
.text-neutral-700 {
color: var(--color-neutral-700);
}
@@ -898,6 +913,11 @@
opacity: 50%;
}
}
.max-md\:grid {
@media (width < 48rem) {
display: grid;
}
}
.md\:col-span-1 {
@media (width >= 48rem) {
grid-column: span 1 / span 1;
@@ -918,11 +938,21 @@
display: block;
}
}
.md\:grid {
@media (width >= 48rem) {
display: grid;
}
}
.md\:hidden {
@media (width >= 48rem) {
display: none;
}
}
.md\:inline {
@media (width >= 48rem) {
display: inline;
}
}
.md\:grid-cols-5 {
@media (width >= 48rem) {
grid-template-columns: repeat(5, minmax(0, 1fr));