diff options
author | JeremyJamesL <jeremyluscombe@gmail.com> | 2024-12-28 16:39:18 +1100 |
---|---|---|
committer | JeremyJamesL <jeremyluscombe@gmail.com> | 2024-12-28 16:39:18 +1100 |
commit | e70da7d3a9c0241944a035c42cfc7927cd2314e5 (patch) | |
tree | 1d3e94ff448cf3d421c18ef6f24280e00b39bc4c /src/index.css | |
parent | d0fd07ca6e183a0b76ca8268b80a8dde1d8d0df4 (diff) |
fixed positioning
Diffstat (limited to 'src/index.css')
-rw-r--r-- | src/index.css | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/index.css b/src/index.css index 57ac450..08ab90b 100644 --- a/src/index.css +++ b/src/index.css @@ -9,11 +9,14 @@ } */ #map { - height: 100%; - height: calc(100dvh - (64px + 288px)); + height: 100dvh; width: 100%; } +.bottom--hide { + bottom: -14rem; +} + .gm-style-mtc-bbw { display: none; } @@ -84,3 +87,9 @@ body { stroke-miterlimit: 10; stroke-dasharray: 4, 3; } + +.bar { + height: 20px; + width: 200px; + background-color: red; +} |