Skip to content

Commit

Permalink
feat: added rounded bottom corners
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoalee committed Oct 29, 2023
1 parent 579010b commit 895b5d4
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ const EditAnalyses: React.FC = React.memo((props) => {
elevation={0}
defaultExpanded
expandIconColor="secondary.main"
sx={EditStudyComponentsStyles.accordion}
accordionSummarySx={EditStudyComponentsStyles.accordionSummary}
sx={[
EditStudyComponentsStyles.accordion,
{
borderBottomLeftRadius: '4px !important',
borderBottomRightRadius: '4px !important',
},
]}
TitleElement={
<Typography sx={EditStudyComponentsStyles.accordionTitle}>Analyses</Typography>
}
Expand Down

0 comments on commit 895b5d4

Please sign in to comment.