fix: Fix incorrect background for classic theme image search
All checks were successful
/ build-all-services (push) Successful in 9m56s

Fixes #T154
This commit is contained in:
Evie Viau-Chow-Stuart 2025-03-19 21:20:23 -07:00
parent 96478fb5d2
commit 03314a53d1
Signed by: evie
GPG key ID: 928652CDFCEC8099

View file

@ -0,0 +1,11 @@
.pagecontent {
background: url("/static/snow.gif");
border: 3px inset black;
color: black;
}
@media screen and (max-width: 800px) {
.pagecontent {
width: calc(100% - 4px);
}
}