Skip to content

Commit 6d929a8

Browse files
committed
Use word-break by default on Bingus frontend
1 parent 8539e07 commit 6d929a8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bingus-frontend/src/App.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,15 @@ function App() {
7575
const theme = useMemo(
7676
() =>
7777
createTheme({
78+
components: {
79+
MuiTypography: {
80+
styleOverrides: {
81+
root: {
82+
wordBreak: "break-word",
83+
},
84+
},
85+
},
86+
},
7887
palette: {
7988
mode: prefersDarkMode ? "dark" : "light",
8089
},

0 commit comments

Comments
 (0)