aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/components/NotificationBanner.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/renderer/src/components/NotificationBanner.tsx')
-rw-r--r--packages/renderer/src/components/NotificationBanner.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/renderer/src/components/NotificationBanner.tsx b/packages/renderer/src/components/NotificationBanner.tsx
index 36c192a..c759d46 100644
--- a/packages/renderer/src/components/NotificationBanner.tsx
+++ b/packages/renderer/src/components/NotificationBanner.tsx
@@ -41,21 +41,21 @@ const NotificationBannerRoot = styled(Alert)(({ theme }) => ({
41 justifyContent: 'center', 41 justifyContent: 'center',
42 }, 42 },
43 '.MuiAlert-action': { 43 '.MuiAlert-action': {
44 paddingInlineStart: 0, 44 paddingLeft: 0,
45 }, 45 },
46})); 46}));
47 47
48const NotificationBannerText = styled(Typography)(({ theme }) => ({ 48const NotificationBannerText = styled(Typography)(({ theme }) => ({
49 fontSize: 'inherit', 49 fontSize: 'inherit',
50 paddingTop: theme.spacing(1), 50 paddingTop: theme.spacing(1),
51 paddingInlineEnd: theme.spacing(2), 51 paddingRight: theme.spacing(2),
52 flexGrow: 9999, 52 flexGrow: 9999,
53})); 53}));
54 54
55const NotificationBannerButtons = styled(Box)(({ theme }) => ({ 55const NotificationBannerButtons = styled(Box)(({ theme }) => ({
56 fontSize: 'inherit', 56 fontSize: 'inherit',
57 paddingTop: theme.spacing(0.5), 57 paddingTop: theme.spacing(0.5),
58 paddingInlineEnd: theme.spacing(0.5), 58 paddingRight: theme.spacing(0.5),
59 display: 'flex', 59 display: 'flex',
60 flexWrap: 'wrap', 60 flexWrap: 'wrap',
61 flexGrow: 1, 61 flexGrow: 1,