Skip to content

Commit

Permalink
feat(Disclosure): fix stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbrillant committed Jul 15, 2024
1 parent 980c2e5 commit 5b19738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/disclosure/disclosure.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export const Container = styled.div<{ $expanded: boolean; }>`
border-radius: var(--border-radius);
box-shadow: 0 10px 20px 0 ${({ theme }) => theme.component['disclosure-box-shadow-color']};
color: ${({ theme }) => theme.component['disclosure-text-color']};
display: ${({ $expanded }) => ($expanded ? 'block' : 'none')};
list-style-type: none;
position: absolute;
display: ${({ $expanded }) => ($expanded ? 'block' : 'none')};
width: 100%;
z-index: 700;
`;
Expand Down

0 comments on commit 5b19738

Please sign in to comment.