From 1709c04a213d65240b6ec23059a36c8aebbb5f87 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 24 Oct 2024 06:52:14 +0530 Subject: [PATCH] feat: override alert info severity styles --- src/App.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 5a58323b..ab2cfd9c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -58,10 +58,17 @@ const theme = createTheme({ }, }, }, + MuiAlert: { + styleOverrides: { + standardInfo: { + backgroundColor: "#fce1f4", + color: "#ff00c3", + }, + }, + }, }, }); - function App() { return (