diff options
Diffstat (limited to 'client/css')
-rw-r--r-- | client/css/editor.css | 7 | ||||
-rw-r--r-- | client/css/main.css | 10 |
2 files changed, 13 insertions, 4 deletions
diff --git a/client/css/editor.css b/client/css/editor.css index 51c7571..23486da 100644 --- a/client/css/editor.css +++ b/client/css/editor.css @@ -11,10 +11,13 @@ canvas { padding: 1rem; } -#mapgen { +#mapgen, #mapload { display: flex; flex-direction: column; - position: absolute; +} + +#mapload { + margin-top: 3rem; } #export { diff --git a/client/css/main.css b/client/css/main.css index 26fab00..e40cbff 100644 --- a/client/css/main.css +++ b/client/css/main.css @@ -19,10 +19,16 @@ body { #center { width: 100vw; height: 100vh; - display: flex; + position: absolute; +} + +#center-inner { + width: 100%; + height: 100%; + position: relative; align-items: center; justify-content: center; - position: absolute; + display: flex; flex-direction: column; } |