Begin redesign

This commit is contained in:
2025-06-15 10:07:46 +02:00
parent bf1d119bd8
commit d9e0052003
11 changed files with 344 additions and 2 deletions

View File

@ -2854,6 +2854,11 @@
height: 100vh;
}
}
.md\:w-64 {
@media (width >= 48rem) {
width: calc(var(--spacing) * 64);
}
}
.md\:w-\[calc\(100\%-256px\)\] {
@media (width >= 48rem) {
width: calc(100% - 256px);
@ -2879,6 +2884,11 @@
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
.md\:grid-cols-\[300px_1fr\] {
@media (width >= 48rem) {
grid-template-columns: 300px 1fr;
}
}
.md\:flex-row {
@media (width >= 48rem) {
flex-direction: row;