diff --git a/hwe/scss/common/break_500px.scss b/hwe/scss/common/break_500px.scss index 3df2ad52..4297ea35 100644 --- a/hwe/scss/common/break_500px.scss +++ b/hwe/scss/common/break_500px.scss @@ -3,7 +3,7 @@ $container-max-widths: ( md: 500px, - lg: 1020px, + lg: 1000px, xl: 1140px, xxl: 1320px ); @@ -11,8 +11,8 @@ $container-max-widths: ( $grid-breakpoints: ( xs: 0, sm: 520px, - md: 900px, - lg: 992px, + md: 760px, + lg: 940px, xl: 1200px, xxl: 1400px ); @@ -24,7 +24,7 @@ $grid-breakpoints: ( } @mixin media-1000px{ - @media (min-width: map-get($grid-breakpoints, 'md')) { + @media (min-width: map-get($grid-breakpoints, 'lg')) { @content; } @@ -36,7 +36,7 @@ $grid-breakpoints: ( } @mixin media-500px{ - @media (max-width: calc(map-get($grid-breakpoints, 'md') - .02px)) { + @media (max-width: calc(map-get($grid-breakpoints, 'lg') - .02px)) { @content; } } \ No newline at end of file diff --git a/hwe/ts/PageBattleCenter.vue b/hwe/ts/PageBattleCenter.vue index 527636be..99b01476 100644 --- a/hwe/ts/PageBattleCenter.vue +++ b/hwe/ts/PageBattleCenter.vue @@ -3,10 +3,10 @@
-
+
◀ 이전
-
+
-
+
-
+
다음 ▶
-
+
장수 정보
-
+
장수 열전
-
+
전투 기록
-
+
전투 결과
-
+
개인 기록
diff --git a/hwe/ts/PageBoard.vue b/hwe/ts/PageBoard.vue index e5ff5da5..8e72a061 100644 --- a/hwe/ts/PageBoard.vue +++ b/hwe/ts/PageBoard.vue @@ -5,15 +5,15 @@
새 게시물 작성
-
제목
-
+
제목
+
-
내용
-
+
내용
+
-
동시 응답 수(0=모두)
-
+
동시 응답 수(0=모두)
+
-
+
제출
diff --git a/hwe/ts/components/AuctionResource.vue b/hwe/ts/components/AuctionResource.vue index dfee14b7..7fca7c43 100644 --- a/hwe/ts/components/AuctionResource.vue +++ b/hwe/ts/components/AuctionResource.vue @@ -32,10 +32,10 @@
{{ cutDateTime(auction.closeDate) }}
-
+
{{ selectedBuyRiceAuction.id }}번 쌀 {{ selectedBuyRiceAuction.amount }} 경매에 금
-
+
-
입찰
+
입찰
쌀 판매
@@ -78,10 +78,10 @@
{{ cutDateTime(auction.closeDate) }}
-
+
{{ selectedSellRiceAuction.id }}번 금 {{ selectedSellRiceAuction.amount }} 경매에 쌀
-
+
-
입찰
+
입찰
경매 등록
-
+
매물
@@ -105,7 +105,7 @@
-
+
수량 ({{ openAuctionInfo.type == "buyRice" ? "쌀" : "금" }})
-
+
기간(턴)
-
+
시작가 ({{ openAuctionInfo.type == "buyRice" ? "금" : "쌀" }})
-
+
마감가 ({{ openAuctionInfo.type == "buyRice" ? "금" : "쌀" }})
경매 {{ currentAuction.auction.id }}번 상세
-
경매명
-
+
경매명
+
{{ currentAuction.auction.title }}
-
주최자(익명)
-
+
주최자(익명)
+
{{ currentAuction.auction.hostName }}
-
종료일시
-
{{ cutDateTime(currentAuction.auction.closeDate, true) }}
+
종료일시
+
{{ cutDateTime(currentAuction.auction.closeDate, true) }}
-
최대지연
-
+
최대지연
+
{{ cutDateTime(currentAuction.auction.availableLatestBidCloseDate, true) }}
입찰자 목록
-
입찰자
-
입찰포인트
-
시각
+
입찰자
+
입찰포인트
+
시각
-
-
+
+
{{ bidder.generalName }}
-
{{ bidder.amount.toLocaleString() }}
-
{{ cutDateTime(bidder.date) }}
+
{{ bidder.amount.toLocaleString() }}
+
{{ cutDateTime(bidder.date) }}
입찰하기
- -
+
-
입찰
+
입찰
diff --git a/hwe/ts/components/BettingDetail.vue b/hwe/ts/components/BettingDetail.vue index fbcc9517..11e11467 100644 --- a/hwe/ts/components/BettingDetail.vue +++ b/hwe/ts/components/BettingDetail.vue @@ -11,7 +11,7 @@
-
+
-
+
잔여 {{ info.reqInheritancePoint ? "포인트" : "금" }} : {{ bettingDetailInfo.remainPoint.toLocaleString() }}
-
+
사용 포인트: {{ sum(Array.from(myBettings.values())).toLocaleString() }}
-
대상: {{ getTypeStr(pickedBetTypeKey) }}
-
+
대상: {{ getTypeStr(pickedBetTypeKey) }}
+
-
+
베팅
diff --git a/hwe/ts/components/BoardArticle.vue b/hwe/ts/components/BoardArticle.vue index 1a8e11e3..4cb03076 100644 --- a/hwe/ts/components/BoardArticle.vue +++ b/hwe/ts/components/BoardArticle.vue @@ -7,12 +7,12 @@
{{ article.title }}
-
+
{{ article.date.slice(5, 16) }}
-
+
@@ -36,7 +36,7 @@ @keyup.enter="submitComment" />
-
+
등록
diff --git a/hwe/ts/components/BoardComment.vue b/hwe/ts/components/BoardComment.vue index dee8c685..da870e89 100644 --- a/hwe/ts/components/BoardComment.vue +++ b/hwe/ts/components/BoardComment.vue @@ -8,7 +8,7 @@
{{ comment.text }}
-
+
{{ comment.date.slice(5, 16) }}
diff --git a/hwe/ts/components/ChiefReservedCommand.vue b/hwe/ts/components/ChiefReservedCommand.vue index 895e65d8..7dc5efcd 100644 --- a/hwe/ts/components/ChiefReservedCommand.vue +++ b/hwe/ts/components/ChiefReservedCommand.vue @@ -12,7 +12,7 @@
-
+
-
+
-
+
{{ isEditMode ? "일반 모드" : "고급 모드" }}
- + {{ turnIdx }}턴 - + {{ turnIdx }}턴 - + {{ turnIdx }}턴 @@ -217,7 +217,7 @@
-
+
 잘라내기  복사하기 @@ -245,7 +245,7 @@
-
+
명령 선택 ▾
diff --git a/hwe/ts/components/GameBottomBar.vue b/hwe/ts/components/GameBottomBar.vue index 3e8f084c..6179b2d4 100644 --- a/hwe/ts/components/GameBottomBar.vue +++ b/hwe/ts/components/GameBottomBar.vue @@ -1,5 +1,5 @@