fix: show overflow notification action buttons hidden on small screens

by setting `overflow-x: auto`
This commit is contained in:
Angie Song
2025-11-14 15:21:47 -08:00
parent b483891bcb
commit cef61b2c48

View File

@@ -17,6 +17,13 @@ const baseThemeOptions = {
},
},
},
MuiCardActions: {
styleOverrides: {
root: {
overflowX: "auto",
},
},
},
},
};