FXL: fix container, which should not span whole viewport

This commit is contained in:
John Factotum
2023-03-26 03:58:04 +08:00
parent 42a410571c
commit 6d2caaad5b
+2 -2
View File
@@ -40,8 +40,8 @@ class Container {
#side
constructor() {
Object.assign(this.#element.style, {
width: '100vw',
height: '100vh',
width: '100%',
height: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',