From ec25ca17897069547e9568a439a90b81c838dd97 Mon Sep 17 00:00:00 2001 From: HamsterStudent Date: Wed, 8 Nov 2023 11:04:53 +0900 Subject: [PATCH] :ambulance: Hotfix : screen height 100vh -> 100% --- Frontend/public/assets/icon/icon_Reset.png | Bin 336 -> 0 bytes Frontend/src/App.tsx | 1 + Frontend/src/pages/Map/Map.tsx | 3 ++- 3 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 Frontend/public/assets/icon/icon_Reset.png diff --git a/Frontend/public/assets/icon/icon_Reset.png b/Frontend/public/assets/icon/icon_Reset.png deleted file mode 100644 index 6ae30c297710883636b5df981c0463a768d6dac9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^fkxt7srqa#;L)Kg3SgzXWptM2x&2LPHk$j zY_L4Q=)+jtz%qkr29p_UG?TpE@l%2S-o4M5{l85`^;dhk*qM1hQ|&U?(?8cHrk&Bg z=KpN&&9x>~_ZsuFFFblSYi59ioZ+;+X+aJZ$l8M&=8!xp8w5_=_2za{foB=1z%*-Q&XOMO6twoI!D2R9V?9w fF(!!%{bBgC(DUM@)>Cyr4>NeW`njxgN@xNAot=MR diff --git a/Frontend/src/App.tsx b/Frontend/src/App.tsx index 4f08054..2d5d47e 100644 --- a/Frontend/src/App.tsx +++ b/Frontend/src/App.tsx @@ -11,6 +11,7 @@ import FirstaidDetail from "./pages/Guide/FirstaidDetail"; const AppWrap = styled.section` max-width: 430px; + /* height: 100vh; */ height: 932px; margin: 0 auto; border: solid 1px; diff --git a/Frontend/src/pages/Map/Map.tsx b/Frontend/src/pages/Map/Map.tsx index f447be1..1de7274 100644 --- a/Frontend/src/pages/Map/Map.tsx +++ b/Frontend/src/pages/Map/Map.tsx @@ -28,7 +28,8 @@ import { apiconfig } from "../../hooks/apiconfig"; const MapWrap = styled.section` width: 100%; - height: 100vh; + /* height: 100vh; */ + height: 100%; position: relative; overflow: hidden; .marker {