animated logo
Some checks failed
test / cargo test (push) Failing after 1m4s

This commit is contained in:
2024-10-31 19:22:57 +01:00
parent 2ff39c6c1d
commit 2ec4ed6c4e
8 changed files with 103 additions and 41 deletions

View File

@ -620,6 +620,10 @@ video {
size-adjust: 92%;
}
.visible {
visibility: visible;
}
.col-span-2 {
grid-column: span 2 / span 2;
}
@ -632,10 +636,6 @@ video {
float: inline-start;
}
.float-right {
float: right;
}
.clear-both {
clear: both;
}
@ -644,6 +644,10 @@ video {
margin: 0.25rem;
}
.m-10 {
margin: 2.5rem;
}
.m-4 {
margin: 1rem;
}
@ -656,10 +660,6 @@ video {
margin: 1.5rem;
}
.m-10 {
margin: 2.5rem;
}
.mx-0\.5 {
margin-left: 0.125rem;
margin-right: 0.125rem;
@ -796,18 +796,14 @@ video {
height: 240px;
}
.h-auto {
height: auto;
}
.h-\[256px\] {
height: 256px;
}
.h-\[320px\] {
height: 320px;
}
.h-auto {
height: auto;
}
.max-h-\[236px\] {
max-height: 236px;
}
@ -832,10 +828,6 @@ video {
width: 180px;
}
.w-\[256px\] {
width: 256px;
}
.w-\[320px\] {
width: 320px;
}
@ -882,22 +874,10 @@ video {
break-inside: avoid;
}
.auto-cols-auto {
grid-auto-columns: auto;
}
.grid-flow-row {
grid-auto-flow: row;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-\[1fr_auto\] {
grid-template-columns: 1fr auto;
}
.flex-row {
flex-direction: row;
}
@ -2068,10 +2048,6 @@ article a:visited {
grid-template-columns: max-content 1fr;
}
.sm\:grid-cols-\[1fr_auto\] {
grid-template-columns: 1fr auto;
}
.sm\:grid-rows-\[max-content_1fr_max-content\] {
grid-template-rows: max-content 1fr max-content;
}