From de17d87f477ad79e29199c2144efd4350756db0c Mon Sep 17 00:00:00 2001 From: Hide_D Date: Fri, 30 Jun 2023 16:30:44 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B9=84=EC=9D=BC=EA=B4=80=EC=A0=81?= =?UTF-8?q?=EC=9D=B8=20breakpoint=20=EC=A0=95=EC=A0=95=20-=20md=EA=B0=80?= =?UTF-8?q?=20=EC=95=84=EB=8B=88=EB=9D=BC=20lg=EB=A5=BC=20=EA=B8=B0?= =?UTF-8?q?=EC=A4=80=EC=9C=BC=EB=A1=9C=20=EC=9E=A1=EC=95=84=EC=95=BC=20?= =?UTF-8?q?=ED=95=A8=20-=20lg=EC=9D=98=20=EA=B8=B0=EC=A4=80=20breakpoint?= =?UTF-8?q?=EB=A5=BC=20940=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD=20-=20is?= =?UTF-8?q?100pxMode=EC=9D=98=20=EA=B8=B0=EC=A4=80=20=EC=97=AD=EC=8B=9C=20?= =?UTF-8?q?lg=20breakpoint=EC=99=80=20=EC=9D=BC=EC=B9=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/scss/common/break_500px.scss | 10 ++--- hwe/ts/PageBattleCenter.vue | 18 ++++---- hwe/ts/PageBoard.vue | 12 ++--- hwe/ts/PageFront.vue | 4 +- hwe/ts/PageHistory.vue | 8 ++-- hwe/ts/PageInheritPoint.vue | 20 ++++----- hwe/ts/PageJoin.vue | 44 +++++++++---------- hwe/ts/PageNPCControl.vue | 4 +- hwe/ts/PageNationStratFinan.vue | 20 ++++----- hwe/ts/PageTroop.vue | 2 +- hwe/ts/PageVote.vue | 24 +++++----- hwe/ts/components/AuctionResource.vue | 22 +++++----- hwe/ts/components/AuctionUniqueItem.vue | 38 ++++++++-------- hwe/ts/components/BettingDetail.vue | 12 ++--- hwe/ts/components/BoardArticle.vue | 6 +-- hwe/ts/components/BoardComment.vue | 2 +- hwe/ts/components/ChiefReservedCommand.vue | 22 +++++----- hwe/ts/components/GameBottomBar.vue | 2 +- hwe/ts/components/GameInfo.vue | 26 +++++------ hwe/ts/components/MessagePanel.vue | 6 +-- hwe/ts/components/NationBasicCard.vue | 14 +++--- hwe/ts/processing/General/che_건국.vue | 14 +++--- hwe/ts/processing/General/che_군량매매.vue | 6 +-- hwe/ts/processing/General/che_등용.vue | 4 +- hwe/ts/processing/General/che_무작위건국.vue | 14 +++--- hwe/ts/processing/General/che_선양.vue | 4 +- hwe/ts/processing/General/che_숙련전환.vue | 6 +-- hwe/ts/processing/General/che_임관.vue | 4 +- hwe/ts/processing/General/che_장비매매.vue | 6 +-- .../processing/General/che_장수대상임관.vue | 4 +- hwe/ts/processing/General/che_징병.vue | 18 ++++---- hwe/ts/processing/General/che_헌납.vue | 6 +-- hwe/ts/processing/General/cr_건국.vue | 14 +++--- hwe/ts/processing/Nation/che_국기변경.vue | 4 +- hwe/ts/processing/Nation/che_국호변경.vue | 4 +- hwe/ts/processing/Nation/che_물자원조.vue | 10 ++--- hwe/ts/processing/Nation/che_발령.vue | 6 +-- hwe/ts/processing/Nation/che_불가침제의.vue | 6 +-- hwe/ts/processing/Nation/che_피장파장.vue | 6 +-- hwe/ts/processing/Nation/cr_인구이동.vue | 6 +-- hwe/ts/processing/ProcessCity.vue | 4 +- hwe/ts/processing/ProcessGeneralAmount.vue | 8 ++-- hwe/ts/processing/ProcessNation.vue | 4 +- hwe/ts/state/is1000pxMode.ts | 2 +- 44 files changed, 238 insertions(+), 238 deletions(-) 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 @@