🐛 Fix HTML table not full width on desktop

Fixes: #826
This commit is contained in:
James Panther
2024-03-09 15:26:31 +11:00
parent fd49282446
commit 088c913f67
3 changed files with 33 additions and 8 deletions
+2 -3
View File
@@ -109,14 +109,13 @@ body:has(#menu-controller:checked) {
/* Fix long tables breaking out of article on mobile */
table {
display: block;
overflow: auto;
@apply block overflow-auto md:table;
}
/* Fix long inline code sections breaking out of article on mobile */
code {
word-wrap: break-word; /* All browsers since IE 5.5+ */
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */
@apply break-words;
}
/* -- Chroma Highlight -- */