fab and containers and stuff

This commit is contained in:
talksik
2022-05-28 01:08:59 -05:00
parent 87bb358627
commit 04a5e048aa
2 changed files with 41 additions and 7 deletions
+15 -1
View File
@@ -1,4 +1,4 @@
import { createTheme } from '@mui/material';
import { createTheme, experimental_sx as sx } from '@mui/material';
import { blueGrey } from '@mui/material/colors';
export const NirvanaTheme = createTheme({
@@ -19,6 +19,7 @@ export const NirvanaTheme = createTheme({
main: '#FFB6B6',
},
},
components: {
// Name of the component
MuiButtonBase: {
@@ -28,6 +29,11 @@ export const NirvanaTheme = createTheme({
},
},
MuiAvatar: {
styleOverrides: {
root: sx({
boxShadow: 1,
}),
},
defaultProps: {
variant: 'rounded',
},
@@ -78,5 +84,13 @@ export const NirvanaTheme = createTheme({
},
},
},
MuiFab: {
styleOverrides: {
root: {
borderRadius: 5,
},
},
},
},
});