update bauchbinde
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
f266d65cd9
commit
70e4125d63
|
@ -91,6 +91,9 @@
|
||||||
if (key === 'bottom') {
|
if (key === 'bottom') {
|
||||||
root.style.setProperty('--bottom', value);
|
root.style.setProperty('--bottom', value);
|
||||||
}
|
}
|
||||||
|
if (key === 'top') {
|
||||||
|
root.style.setProperty('--top', value);
|
||||||
|
}
|
||||||
if (key === 'width') {
|
if (key === 'width') {
|
||||||
root.style.setProperty('--width', value);
|
root.style.setProperty('--width', value);
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
--bottom: 9vw;
|
--bottom: 9vw;
|
||||||
--left: 12.5vw;
|
--left: 12.5vw;
|
||||||
--width: 67.5vw;
|
--width: 67.5vw;
|
||||||
|
--top: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root.theme-main {
|
:root.theme-main {
|
||||||
|
@ -45,6 +46,7 @@ body {
|
||||||
bottom: var(--bottom);
|
bottom: var(--bottom);
|
||||||
left: var(--left);
|
left: var(--left);
|
||||||
width: var(--width);
|
width: var(--width);
|
||||||
|
top: var(--top);
|
||||||
}
|
}
|
||||||
|
|
||||||
.background {
|
.background {
|
||||||
|
|
Loading…
Reference in New Issue