Skip to content

Commit

Permalink
fix: increase chromatic delay for bottomSheet
Browse files Browse the repository at this point in the history
  • Loading branch information
haideralsh committed Dec 12, 2024
1 parent 59ab629 commit 8fbfc7d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/BottomSheet/stories/BottomSheet.actions.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
title: "Components/BottomSheet/Actions",
decorators: [(storyFn) => <div style={{ width: "800px", height: "800px" }}>{storyFn()}</div>],
parameters: {
chromatic: { delay: 1000 },
chromatic: { delay: 3000 },
},
};

Expand Down
2 changes: 1 addition & 1 deletion src/BottomSheet/stories/BottomSheet.content.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
title: "Components/BottomSheet/Content",
decorators: [(storyFn) => <div style={{ width: "800px", height: "800px" }}>{storyFn()}</div>],
parameters: {
chromatic: { delay: 1000 },
chromatic: { delay: 3000 },
},
};

Expand Down
2 changes: 1 addition & 1 deletion src/BottomSheet/stories/BottomSheet.features.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default {
title: "Components/BottomSheet/Features",
decorators: [(storyFn) => <div style={{ width: "800px", height: "800px" }}>{storyFn()}</div>],
parameters: {
chromatic: { delay: 1000 },
chromatic: { delay: 3000 },
},
};

Expand Down
2 changes: 1 addition & 1 deletion src/BottomSheet/stories/BottomSheet.parts.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default {
title: "Components/BottomSheet/Parts",
decorators: [(storyFn) => <div style={{ width: "800px", height: "800px" }}>{storyFn()}</div>],
parameters: {
chromatic: { delay: 1000 },
chromatic: { delay: 3000 },
},
};

Expand Down
2 changes: 1 addition & 1 deletion src/BottomSheet/stories/BottomSheet.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
title: "Components/BottomSheet",
decorators: [(storyFn) => <div style={{ width: "800px", height: "800px" }}>{storyFn()}</div>],
parameters: {
chromatic: { delay: 1000 },
chromatic: { delay: 3000 },
},
};

Expand Down
7 changes: 4 additions & 3 deletions src/DatePicker/DatePickerStyles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,10 @@ export const DatePickerStyles = createGlobalStyle(({ theme }) => ({
cursor: "pointer",
},
},
".react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover": {
backgroundColor: "transparent",
},
".react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover":
{
backgroundColor: "transparent",
},
".react-datepicker__day-names, .react-datepicker__week": {
whiteSpace: "nowrap",
},
Expand Down
2 changes: 1 addition & 1 deletion src/TopBar/stories/TopBar.menu.story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
parameters: {
layout: "fullscreen",
chromatic: {
delay: 1000,
delay: 3000,
modes: {
locale: "en",
desktopScale: "standard",
Expand Down

0 comments on commit 8fbfc7d

Please sign in to comment.