ソースを参照

fix: show overflow notification action buttons hidden on small screens

by setting `overflow-x: auto`
Angie Song 3 ヶ月 前
コミット
cef61b2c48
1 ファイル変更7 行追加0 行削除
  1. 7 0
      web/src/components/theme.js

+ 7 - 0
web/src/components/theme.js

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