Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
targos committed Dec 20, 2024
1 parent a3f8669 commit a7df07b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 4 additions & 6 deletions src/components/accordion/accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@ const AccordionItemHeader = styled.div`
cursor: pointer;
display: flex;
align-items: center;
border-color: rgb(213 213 213) currentcolor currentcolor;
border-color: #d5d5d5 currentcolor currentcolor;
border-style: solid none none;
color: rgb(45 45 45);
color: #2d2d2d;
font-weight: bold;
text-decoration: none;
text-shadow: rgb(255 255 255) 0 1px 0;
background: rgb(255 255 255)
linear-gradient(rgb(240 240 240) 5%, rgb(225 225 225) 100%) repeat
scroll 0 0;
text-shadow: white 0 1px 0;
background: white linear-gradient(#f0f0f0 5%, white 100%) repeat scroll 0 0;
width: 100%;
user-select: none;
justify-content: space-between;
Expand Down
4 changes: 2 additions & 2 deletions stories/components/tabs.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ const ManyTabsStyled = styled(Tabs, {
div[role='tablist'] {
overflow: ${(props) =>
props.orientation === 'vertical' ? 'hidden' : 'auto'} ${(props) =>
props.orientation === 'vertical' ? 'auto' : 'hidden'};
props.orientation === 'vertical' ? 'hidden' : 'auto'}
${(props) => (props.orientation === 'vertical' ? 'auto' : 'hidden')};
}
`;

Expand Down

0 comments on commit a7df07b

Please sign in to comment.