Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
storybook: apply styles outside sc theme
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Feb 16, 2022
1 parent 5010e01 commit 916461d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/inputs/DatePicker/DatePicker.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const NavBtn = styled.div<DatePickerProps>`
background-color: ${(props) => props.navBgColor};
border-radius: 4px;
cursor: pointer;
box-shadow: ${(props) => props.theme.shadows.xsmall};
box-shadow: ${(props) => props.shadow};
& > svg {
color: ${(props) => props.navTextColor};
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/inputs/DatePicker/DatePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export const DatePicker = ({
navHoverBgColor: navHoverBgColor || theme.colors.calendarOnHover,
navHoverTextColor: navHoverTextColor || theme.colors.dateBoxHoverTextColor,
inputTypo: theme.typography.body1,
shadow: theme.shadows.xsmall,
zIndex
}

Expand Down

0 comments on commit 916461d

Please sign in to comment.