File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
web/src/pages/Cases/CaseDetails/Voting/VotesDetails Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff 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
5056const AccordionContentContainer = styled . div `
5157 display: flex;
5258 flex-direction: column;
53- gap: 16px ;
59+ gap: 12px ;
5460` ;
5561
5662const JustificationText = styled . div `
You can’t perform that action at this time.
0 commit comments