Skip to content

Commit

Permalink
style: CoachToolTip 다크모드 임시 스타일링
Browse files Browse the repository at this point in the history
  • Loading branch information
YuHyun-P committed Feb 3, 2024
1 parent a32f5cf commit e6eff38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export const container = style([
position: "relative",
width: 398,
padding: 16,
color: color.$scale.grey800,
backgroundColor: color.$semantic.bgWhite,
},
]);
Expand All @@ -22,17 +21,13 @@ export const header = style([flexAlignCenter, { gap: 5, marginBottom: 12 }]);

export const title = style([typography.$semantic.title3Bold]);

export const stepProgress = style([
typography.$semantic.caption2Regular,
{ color: color.$scale.grey500 },
]);
export const stepProgress = style([typography.$semantic.caption2Regular]);

export const closeButton = style({
position: "absolute",
top: 13,
right: 3,
border: 0,
color: color.$scale.grey700,
backgroundColor: "transparent",
});

Expand All @@ -56,7 +51,6 @@ export const actionButtonVariant = styleVariants({
actionBaseButton,
{
padding: 0,
color: color.$scale.grey600,
backgroundColor: "transparent",
},
],
Expand Down
3 changes: 2 additions & 1 deletion packages/frontend/src/components/coachmark/Coachmark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ const LOCALE: RequiredJoyrideProps["locale"] = {

const STYLES: RequiredJoyrideProps["styles"] = {
options: {
overlayColor: "rgba(0, 0, 0, 0.2)",
arrowColor: color.$semantic.bgWhite,
overlayColor: "rgba(0, 0, 0, 0.6)",
primaryColor: color.$semantic.primary,
zIndex: coachmarkZIndex,
},
Expand Down

0 comments on commit e6eff38

Please sign in to comment.