Skip to content

Commit

Permalink
fix : TextSizeType μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
caseBread committed Mar 9, 2023
1 parent 8f0f581 commit 6cc400a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/atom/textAtom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ export const TEXT_BLACK: RGBColor = { r: 10, g: 10, b: 10, a: 1 };
export const TEXT_LG = 'tablet:text-[34px] text-[21px]';
export const TEXT_MD = 'tablet:text-[26px] text-[16px]';
export const TEXT_SM = 'tablet:text-[22px] text-[14px]';
export type TextSizeType = string;
export type TextSizeType =
| 'tablet:text-[34px] text-[21px]'
| 'tablet:text-[26px] text-[16px]'
| 'tablet:text-[22px] text-[14px]';

export type TextType = {
id: number;
Expand Down

0 comments on commit 6cc400a

Please sign in to comment.