Skip to content

Commit

Permalink
border radius for each cell in header of feature table
Browse files Browse the repository at this point in the history
  • Loading branch information
fullstack12345 committed May 15, 2022
1 parent e35afa9 commit f0d4c03
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/carousel/CarouselFeatures.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ const styles = {
header: {
width: '100%',
border: 1,
borderLeft: 0,
// borderLeft: 0,
borderTopLeftRadius: '1em',
borderTopRightRadius: '1em',
borderColor: (theme)=>theme.palette.divider,
p: 1,
mt: 0
Expand Down Expand Up @@ -239,7 +241,7 @@ export default function CarouselFeatures(props) {

return (
<RootStyle>
<Box ref={caseRef} sx={{width: 170, position: 'absolute', mt: 3, boxShadow: '1px 0px 0px rgba(145, 158, 171, 0.24)'}}>
<Box ref={caseRef} sx={{width: 170, position: 'absolute', mt: 3}}>
<Table sx={{borderTopLeftRadius: '1em', borderBottomLeftRadius: '1em', bgcolor: 'origin.main'}}>
<TableBody>
{bodyTRs.caseBar}
Expand Down

1 comment on commit f0d4c03

@vercel
Copy link

@vercel vercel bot commented on f0d4c03 May 15, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.