Skip to content

Commit 1309708

Browse files
committed
#1641: Set sizes for borders
1 parent 103461f commit 1309708

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/frontend/src/pages/ChangeRequestDetailPage/OtherChangeRequestsPopupTabs.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ const OtherChangeRequestsPopupTabs: React.FC<OtherChangeRequestsPopupTabsProps>
5555
justifyContent: 'flex-start',
5656
padding: '20px',
5757
background: theme.palette.background.paper,
58-
borderTop: `solid ${theme.palette.divider}`,
59-
borderLeft: `solid ${theme.palette.divider}`
58+
borderTop: `solid 1px ${theme.palette.divider}`,
59+
borderLeft: `solid 1px ${theme.palette.divider}`
6060
}}
6161
>
6262
{crList.map((cr: ChangeRequest) => (
@@ -83,15 +83,15 @@ const OtherChangeRequestsPopupTabs: React.FC<OtherChangeRequestsPopupTabsProps>
8383
},
8484
'& button': {
8585
background: theme.palette.background.paper,
86-
border: `solid ${theme.palette.divider}`,
86+
border: `solid 1px ${theme.palette.divider}`,
8787
color: theme.palette.text.primary,
8888
textTransform: 'none'
8989
},
9090
'& button.Mui-selected': {
9191
color: theme.palette.text.primary,
9292
borderBottom: 'transparent'
9393
},
94-
mb: '-1.5px'
94+
mb: '-1px'
9595
}}
9696
>
9797
{displayTab(1, `Other CR's from ${changeRequest.submitter.firstName} ${changeRequest.submitter.lastName}`)}

0 commit comments

Comments
 (0)