feat: 메인 페이지를 반응형 페이지로 변경 #197

Merged
Hide_D merged 31 commits from reactive_main into devel 2021-12-03 23:06:53 +09:00
2 changed files with 8 additions and 3 deletions
Showing only changes of commit 5b026e3c5c - Show all commits
+3 -3
View File
@@ -258,15 +258,15 @@ $nationColorType = substr($myNationStatic['color'] ?? '#000000', 1);
<div class="row gx-0"><?= commandButton() ?></div>
<div class="row gx-0">
<div class="col-md-6" id="general_public_record-position">
<div><b>장수 동향</b></div>
<div class="bg1 center s-border-tb"><b>장수 동향</b></div>
<div id="general_public_record" style="text-align:left;"><?= formatHistoryToHTML(getGlobalActionLogRecent(15)) ?></div>
</div>
<div class="col-md-6" id="general_log-position">
<div><b>개인 기록</b></div>
<div class="bg1 center s-border-tb"><b>개인 기록</b></div>
<div id="general_log" style="text-align:left;"><?= formatHistoryToHTML(getGeneralActionLogRecent($me['no'], 15)) ?></div>
</div>
<div class="col-12" id="world_history-position">
<div><b>중원 정세</b></div>
<div class="bg1 center s-border-tb"><b>중원 정세</b></div>
<div id="world_history" colspan=2 style="text-align:left;"><?= formatHistoryToHTML(getGlobalHistoryLogRecent(15)) ?></div>
</div>
</div>
+5
View File
@@ -516,4 +516,9 @@ body {
opacity: 0.7;
}
}
}
.s-border-tb{
border-top: gray solid 1px;
border-bottom: gray solid 1px;
}