oh wow i was meant to push this a long time ago

This commit is contained in:
sky
2026-06-11 23:04:06 -04:00
parent e12d4d3017
commit 0605271327
7 changed files with 141 additions and 113 deletions

View File

@ -1,6 +1,6 @@
section {
min-width: 20%;
height: 400px;
height: 420px;
padding: 8px;
margin: 16px;
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
@ -27,6 +27,28 @@ sections {
margin: 6px;
}
#hiddenGamesList {
width: min(280px, 90%);
height: 200px;
overflow-y: auto;
border: 1px solid color-mix(in srgb, var(--color-1) 50%, #00000000 50%);
border-radius: 12px;
padding: 8px;
margin: 8px 0;
}
.hidden-game-row {
display: flex;
align-items: center;
gap: 8px;
margin: 4px 0;
width: 100%;
}
#hiddenGamesSearch {
width: min(280px, 90%);
}
@-moz-document url-prefix() {
section {
backdrop-filter: blur(0);
@ -36,4 +58,4 @@ sections {
body[fast] section {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}
}