-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from TEAM-Hearus/develop
Fix: λμμΈ μμ€ν μμ λ°μ λ°°ν¬
- Loading branch information
Showing
7 changed files
with
76 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,6 @@ | |
background-color: white; | ||
border: none; | ||
cursor: pointer; | ||
@include Regular; | ||
@include Medium-Sub-14; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,66 @@ | ||
@mixin Regular { | ||
@mixin Semibold-Title-32 { | ||
font-family: 'Pretendard-SemiBold'; | ||
font-size: 32pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Medium-Title-24 { | ||
// μμλ‘ μΆκ° | ||
font-family: 'Pretendard-Medium'; | ||
font-size: 14px; | ||
font-size: 24pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin SemiBold-Body-18 { | ||
font-family: 'Pretendard-SemiBold'; | ||
font-size: 18pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Medium { | ||
@mixin Medium-Body-18 { | ||
font-family: 'Pretendard-Medium'; | ||
font-size: 18pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Regular-Body-18 { | ||
font-family: 'Pretendard-Regular'; | ||
font-size: 18px; | ||
font-size: 18pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin SemiBold { | ||
@mixin SemiBold-Body-16 { | ||
font-family: 'Pretendard-SemiBold'; | ||
font-size: 24px; | ||
font-size: 16pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Title { | ||
@mixin Medium-Body-16 { | ||
font-family: 'Pretendard-Medium'; | ||
font-size: 16pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Regular-Body-16 { | ||
font-family: 'Pretendard-Regular'; | ||
font-size: 16pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin SemiBold-Sub-14 { | ||
font-family: 'Pretendard-SemiBold'; | ||
font-size: 32px; | ||
font-size: 14pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Medium-Sub-14 { | ||
font-family: 'Pretendard-Medium'; | ||
font-size: 14pt; | ||
letter-spacing: -0.025em; | ||
} | ||
|
||
@mixin Regular-Sub-14 { | ||
font-family: 'Pretendard-Regular'; | ||
font-size: 14pt; | ||
letter-spacing: -0.025em; | ||
} |