Skip to content

Commit

Permalink
[Refactor] 컴포넌트 분리 #1074
Browse files Browse the repository at this point in the history
  • Loading branch information
Clearsu committed Dec 7, 2023
1 parent 266d375 commit 517c030
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 27 deletions.
33 changes: 6 additions & 27 deletions styles/tournament-record/TournamentRecord.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

.pageWrap {
@include pageWrap;

p {
font-size: 1rem;
color: white;
text-align: center;
}
}

.title {
Expand All @@ -15,30 +21,3 @@
margin-top: 1.8rem;
background-color: rgb(88, 88, 88);
}

.winnerInfoContainer {
font-weight: 500;
color: #d591ff;
text-align: center;

p {
margin: 0.4rem 0 0;
}

.userId {
font-weight: 700;
color: white;
}

.gameInfo {
font-size: 1rem;

.highlighted {
color: #ffc700;
}
}

.date {
font-size: 0.8rem;
}
}
26 changes: 26 additions & 0 deletions styles/tournament-record/WinnerTournamentInfo.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.winnerInfoContainer {
font-weight: 500;
color: #d591ff;
text-align: center;

p {
margin: 0.4rem 0 0;
}

.userId {
font-weight: 700;
color: white;
}

.gameInfo {
font-size: 1rem;

.highlighted {
color: #ffc700;
}
}

.date {
font-size: 0.8rem;
}
}

0 comments on commit 517c030

Please sign in to comment.