feat(in-progress): 메인메뉴 지도를 500px 모드에 맞게 수정

This commit is contained in:
2021-11-28 18:54:37 +09:00
parent 99d7a26b98
commit 8eda98ff4c
4 changed files with 38 additions and 31 deletions
+17
View File
@@ -131,6 +131,23 @@ body {
grid-column-end: 2;
grid-row-start: 1;
grid-row-end: 2;
.world_map{
width:500px;
height: calc((500px + 20px) * 500 / 700);
}
.map_title{
transform-origin: 0px 0px;
transform: scale(calc(500 / 700));
margin-bottom: -20px * 200 / 700;
}
.map_body{
transform-origin: 0px 0px;
transform: scale(calc(500 / 700));
}
}