Skip to content

Commit

Permalink
Update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
pmakode-akamai committed Oct 17, 2024
1 parent 797359f commit 88dbf78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ export const StyledCellItemBox = styled(Box, {
},
alignContent: 'center',
minHeight: '40px',
[theme.breakpoints.down('sm')]: {
'&:last-child': {
paddingLeft: '15px',
},
},
}));

export const StyledUlBox = styled(Box, { label: 'StyledUlBox' })(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ const FirewallRuleTableRow = React.memo((props: FirewallRuleTableRowProps) => {
<StyledCellItemBox
sx={{
overflowWrap: 'break-word',
paddingLeft: '10px',
paddingLeft: '10px !important',
width: xsDown ? '50%' : '30%',
}}
aria-label={`Label: ${label}`}
Expand Down

0 comments on commit 88dbf78

Please sign in to comment.