misc: 초기 스마트폰 크기 관련 수정

This commit is contained in:
2021-12-07 01:19:38 +09:00
parent 6e6f58ed94
commit 0c5118780c
2 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ if (!$otherTextInfo) {
<title><?= $serverName ?>: 메인</title> <title><?= $serverName ?>: 메인</title>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=500" /> <meta name="viewport" content="width=500, initial-scale=1" />
<?= WebUtil::printJS('../d_shared/common_path.js') ?> <?= WebUtil::printJS('../d_shared/common_path.js') ?>
<?= WebUtil::printJS('dist_js/vendors.js') ?> <?= WebUtil::printJS('dist_js/vendors.js') ?>
<?= WebUtil::printJS('d_shared/base_map.js') ?> <?= WebUtil::printJS('d_shared/base_map.js') ?>
+8 -2
View File
@@ -26,6 +26,12 @@ body {
width: 500px; width: 500px;
margin: 0 auto; margin: 0 auto;
} }
input[type='text'],
input[type='number'],
textarea {
font-size: 16px;
}
} }
.avoid-wrap { .avoid-wrap {
@@ -226,11 +232,11 @@ body {
grid-row: 2 / 3; grid-row: 2 / 3;
} }
#nation-position{ #nation-position {
grid-row: 3 / 4; grid-row: 3 / 4;
} }
#general-position{ #general-position {
grid-row: 4 / 5; grid-row: 4 / 5;
} }