Skip to content

Commit

Permalink
fix modal background color
Browse files Browse the repository at this point in the history
  • Loading branch information
misssn1998 committed Aug 7, 2024
1 parent ff891fb commit f2ba36b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion web/src/app/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const theme = createTheme({
customWhite,
customGreyWhite,
customDarkGrey,
customDarkWhite
customDarkWhite,
},

fontFamily: 'Cerebri Sans, Calibri',
Expand Down Expand Up @@ -64,6 +64,13 @@ export const theme = createTheme({
},
}),
}),
Modal: Modal.extend({
styles: (theme) => ({
modal: {
backgroundColor: theme.colors.customCharcoalGrey[0]
},
}),
}),
},
});

Expand Down

0 comments on commit f2ba36b

Please sign in to comment.