-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: typography 토큰 네이밍 변경, text 컴포넌트 props 변경
- Loading branch information
Showing
9 changed files
with
96 additions
and
69 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
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
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,49 +1,49 @@ | ||
@mixin titleLg { | ||
font-size: var(--font-size-xl); | ||
font-size: var(--font-size-28); | ||
font-weight: var(--font-weight-bold); | ||
} | ||
|
||
@mixin titleMd { | ||
font-size: var(--font-size-lg); | ||
@mixin titleM { | ||
font-size: var(--font-size-24); | ||
font-weight: var(--font-weight-bold); | ||
} | ||
|
||
@mixin titleSm { | ||
font-size: var(--font-size-md); | ||
font-size: var(--font-size-22); | ||
font-weight: var(--font-weight-bold); | ||
} | ||
|
||
@mixin bodyLg { | ||
font-size: var(--font-size-default); | ||
font-size: var(--font-size-16); | ||
font-weight: var(--font-weight-medium); | ||
} | ||
|
||
@mixin bodyMd { | ||
font-size: var(--font-size-sm); | ||
@mixin bodyM { | ||
font-size: var(--font-size-15); | ||
font-weight: var(--font-weight-medium); | ||
} | ||
|
||
@mixin bodySm { | ||
font-size: var(--font-size-xs); | ||
font-size: var(--font-size-14); | ||
font-weight: var(--font-weight-medium); | ||
} | ||
|
||
@mixin bodyXsm { | ||
font-size: var(--font-size-xxs); | ||
font-size: var(--font-size-13); | ||
font-weight: var(--font-weight-medium); | ||
} | ||
|
||
@mixin buttonPrimary { | ||
font-size: var(--font-size-default); | ||
font-size: var(--font-size-16); | ||
font-weight: var(--font-weight-semi-bold); | ||
} | ||
|
||
@mixin buttonSecondary { | ||
font-size: var(--font-size-default); | ||
font-size: var(--font-size-16); | ||
font-weight: var(--font-weight-medium); | ||
} | ||
|
||
@mixin buttonTertiary { | ||
font-size: var(--font-size-xs); | ||
font-size: var(--font-size-14); | ||
font-weight: var(--font-weight-medium); | ||
} |
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