Remove background support experiment

This commit is contained in:
Johannes Zellner
2025-04-07 15:13:09 +02:00
parent 4bf13f3c70
commit d57b39da6e
5 changed files with 0 additions and 98 deletions

View File

@@ -109,18 +109,6 @@ onMounted(async () => {
gap: 15px;
}
body.has-background .headerbar {
background-color: rgba(255,255,255,0.2);
filter: drop-shadow(0px 0px 14px white);
}
@media (prefers-color-scheme: dark) {
body.has-background .headerbar {
background-color: rgba(0,0,0,0.2);
filter: drop-shadow(0px 0px 14px black);
}
}
.headerbar-action {
display: flex;
align-items: center;

View File

@@ -33,20 +33,6 @@ export default {
margin-bottom: 50px;
}
body.has-background .section {
background-color: rgba(255,255,255,0.2);
filter: drop-shadow(0px 0px 14px white);
border-radius: 10px;
}
@media (prefers-color-scheme: dark) {
body.has-background .section {
background-color: rgba(0,0,0,0.2);
filter: drop-shadow(0px 0px 14px black);
border-radius: 10px;
}
}
.section-header {
display: flex;
flex-wrap: wrap;
@@ -78,10 +64,6 @@ body.has-background .section {
}
}
body.has-background .section-divider {
border: none;
}
.section-body {
position: relative;
margin-bottom: 15px;