File tree 1 file changed +9
-3
lines changed
web/src/pages/Cases/CaseDetails/Voting/VotesDetails
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)`
29
29
[class*="accordion-button"] {
30
30
padding: 16px ${ responsiveSize ( 8 , 18 ) } !important;
31
31
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;
33
36
> svg {
34
37
fill: ${ ( { theme } ) => theme . primaryText } !important;
35
38
}
@@ -44,13 +47,16 @@ const StyledCard = styled(Card)`
44
47
width: 100%;
45
48
height: auto;
46
49
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;
48
54
` ;
49
55
50
56
const AccordionContentContainer = styled . div `
51
57
display: flex;
52
58
flex-direction: column;
53
- gap: 16px ;
59
+ gap: 12px ;
54
60
` ;
55
61
56
62
const JustificationText = styled . div `
You can’t perform that action at this time.
0 commit comments