diff --git a/packages/frontend/src/components/coachmark/CoachTooltip.css.ts b/packages/frontend/src/components/coachmark/CoachTooltip.css.ts index cf4c0e9..55c32d5 100644 --- a/packages/frontend/src/components/coachmark/CoachTooltip.css.ts +++ b/packages/frontend/src/components/coachmark/CoachTooltip.css.ts @@ -11,7 +11,7 @@ export const container = style([ borderRadius, { position: "relative", - width: 398, + width: 350, padding: 16, backgroundColor: color.$semantic.bgWhite, }, @@ -19,7 +19,7 @@ export const container = style([ export const header = style([flexAlignCenter, { gap: 5, marginBottom: 12 }]); -export const title = style([typography.$semantic.title3Bold]); +export const title = style([typography.$semantic.title4Bold]); export const stepProgress = style([typography.$semantic.caption2Regular]); @@ -32,7 +32,7 @@ export const closeButton = style({ }); export const content = style([ - typography.$semantic.title3Regular, + typography.$semantic.title4Regular, { height: 53 }, ]); @@ -42,7 +42,7 @@ export const footer = style([ ]); const actionBaseButton = style([ - typography.$semantic.body2Regular, + typography.$semantic.caption1Regular, { border: 0 }, ]); diff --git a/packages/frontend/src/design-system/components/common/Header/Header.css.ts b/packages/frontend/src/design-system/components/common/Header/Header.css.ts index bc25372..b4036cf 100644 --- a/packages/frontend/src/design-system/components/common/Header/Header.css.ts +++ b/packages/frontend/src/design-system/components/common/Header/Header.css.ts @@ -17,13 +17,21 @@ export const container = style([ }, ]); -export const actionGroup = style([flexAlignCenter, { gap: 4 }]); +export const actionGroup = style([flexAlignCenter, { gap: 10 }]); export const tutorialButton = style([ typography.$semantic.body2Regular, + flexAlignCenter, + border.all, { - border: 0, - backgroundColor: "transparent", + backgroundColor: color.$scale.grey00, + borderRadius: "8px", + padding: 15, + height: 36, color: color.$scale.grey700, + transition: "border 0.2s ease", + ":hover": { + border: `1px solid ${color.$scale.grey600}`, + }, }, ]); diff --git a/packages/frontend/src/design-system/tokens/layout.css.ts b/packages/frontend/src/design-system/tokens/layout.css.ts index 79c6bf9..bfa9896 100644 --- a/packages/frontend/src/design-system/tokens/layout.css.ts +++ b/packages/frontend/src/design-system/tokens/layout.css.ts @@ -20,7 +20,7 @@ export const base = style([ flex, widthMax, { - height: "100vh", + height: `calc(100vh - ${headerHeight})`, margin: "0 auto", }, ]);