Skip to content

Commit

Permalink
Use word-break by default on Bingus frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
ButterscotchV committed Dec 12, 2024
1 parent 8539e07 commit 6d929a8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions bingus-frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,15 @@ function App() {
const theme = useMemo(
() =>
createTheme({
components: {
MuiTypography: {
styleOverrides: {
root: {
wordBreak: "break-word",
},
},
},
},
palette: {
mode: prefersDarkMode ? "dark" : "light",
},
Expand Down

0 comments on commit 6d929a8

Please sign in to comment.