fix: Remove web background

This commit is contained in:
Krille 2023-12-11 15:18:17 +01:00
parent 80f6351aaf
commit f1db2b9781
No known key found for this signature in database

View file

@ -1,8 +1,8 @@
body, html { body,
html {
margin: 0; margin: 0;
height: 100%; height: 100%;
background: #ffffff; background: #ffffff;
background-image: url("img/light-background.png");
background-size: 100% 100%; background-size: 100% 100%;
} }
@ -17,18 +17,21 @@ body, html {
.contain { .contain {
display: block; display: block;
width:100%; height:100%; width: 100%;
height: 100%;
object-fit: contain; object-fit: contain;
} }
.stretch { .stretch {
display: block; display: block;
width:100%; height:100%; width: 100%;
height: 100%;
} }
.cover { .cover {
display: block; display: block;
width:100%; height:100%; width: 100%;
height: 100%;
object-fit: cover; object-fit: cover;
} }