Skip to content

Commit

Permalink
🚑 Hotfix : screen height 100vh -> 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
HamsterStudent committed Nov 8, 2023
1 parent 6f7c003 commit ec25ca1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Binary file removed Frontend/public/assets/icon/icon_Reset.png
Binary file not shown.
1 change: 1 addition & 0 deletions Frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 2 additions & 1 deletion Frontend/src/pages/Map/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ec25ca1

Please sign in to comment.