Fix break word css causing lines to overflow

This commit is contained in:
2024-03-19 19:37:19 -06:00
parent 7f0e569139
commit 16c0dac56c
2 changed files with 14 additions and 0 deletions

View File

@@ -1,8 +1,16 @@
*, *::before, *::after {
box-sizing: border-box;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}
html {
overflow-y: scroll;
}
body {
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: serif;
}