diff --git a/src/app/map/map.component.html b/src/app/map/map.component.html index 5b00506..5cec91a 100644 --- a/src/app/map/map.component.html +++ b/src/app/map/map.component.html @@ -1,5 +1,5 @@ - Map Alliance {{version}} + {{version}}
diff --git a/src/app/map/map.component.scss b/src/app/map/map.component.scss index fa348b9..9a588c9 100644 --- a/src/app/map/map.component.scss +++ b/src/app/map/map.component.scss @@ -14,7 +14,13 @@ } .map { - height: calc(100vh - 64px); + @media only screen and (max-width: 600px) { + height: calc(100vh - 56px); + } + + @media only screen and (min-width: 601px) { + height: calc(100vh - 64px); + } } .selected {