diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-29 11:40:46 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-29 11:40:46 -0400 |
commit | f5fcce110a915fca1b114001962170733276e5df (patch) | |
tree | 6ce82c649d7377b42e75c9feb88d73e4aa15d713 /client/css | |
parent | ghost (diff) | |
download | tuxman-f5fcce110a915fca1b114001962170733276e5df.tar.gz tuxman-f5fcce110a915fca1b114001962170733276e5df.tar.bz2 tuxman-f5fcce110a915fca1b114001962170733276e5df.zip |
audio, finalize gameplay, wrap around map, stuff
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; } |