Skip to content

Commit 71c5df8

Browse files
committed
fix: style-tweak in votinghistory cards
1 parent 89f39df commit 71c5df8

File tree

1 file changed

+9
-3
lines changed
  • web/src/pages/Cases/CaseDetails/Voting/VotesDetails

1 file changed

+9
-3
lines changed

web/src/pages/Cases/CaseDetails/Voting/VotesDetails/index.tsx

+9-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ const StyledAccordion = styled(CustomAccordion)`
2929
[class*="accordion-button"] {
3030
padding: 16px ${responsiveSize(8, 18)} !important;
3131
background-color: ${({ theme }) => theme.whiteBackground} !important;
32-
border: 1px solid ${({ theme }) => theme.stroke} !important;
32+
border: 0.5px solid ${({ theme }) => theme.stroke} !important;
33+
border-left: 1px solid ${({ theme }) => theme.stroke} !important;
34+
border-right: 1px solid ${({ theme }) => theme.stroke} !important;
35+
border-radius: 0;
3336
> svg {
3437
fill: ${({ theme }) => theme.primaryText} !important;
3538
}
@@ -44,13 +47,16 @@ const StyledCard = styled(Card)`
4447
width: 100%;
4548
height: auto;
4649
padding: 16px ${responsiveSize(8, 18)};
47-
border: 1px solid ${({ theme }) => theme.stroke};
50+
border: 0.5px solid ${({ theme }) => theme.stroke};
51+
border-left: 1px solid ${({ theme }) => theme.stroke};
52+
border-right: 1px solid ${({ theme }) => theme.stroke};
53+
border-radius: 0;
4854
`;
4955

5056
const AccordionContentContainer = styled.div`
5157
display: flex;
5258
flex-direction: column;
53-
gap: 16px;
59+
gap: 12px;
5460
`;
5561

5662
const JustificationText = styled.div`

0 commit comments

Comments
 (0)