update bauchbinde
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Florian Sorg 2020-12-27 23:50:47 +01:00
parent f266d65cd9
commit 70e4125d63
2 changed files with 5 additions and 0 deletions

View File

@ -91,6 +91,9 @@
if (key === 'bottom') {
root.style.setProperty('--bottom', value);
}
if (key === 'top') {
root.style.setProperty('--top', value);
}
if (key === 'width') {
root.style.setProperty('--width', value);
}

View File

@ -11,6 +11,7 @@
--bottom: 9vw;
--left: 12.5vw;
--width: 67.5vw;
--top: auto;
}
:root.theme-main {
@ -45,6 +46,7 @@ body {
bottom: var(--bottom);
left: var(--left);
width: var(--width);
top: var(--top);
}
.background {