Skip to content

Commit 2f7587f

Browse files
Fix: Tables squash words on narrow displays
Closes #39 - Changed table row and table data to `overflow-wrap: normal`. - Change was made directly to Quartz `base.scss` by placing it at the bottom of the scss file, rather than amending it directly. This ensure it overwrites in the cascade, and is less likely to present merge conflicts when updating Quartz.
1 parent 9eed5fa commit 2f7587f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

quartz/styles/base.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -519,3 +519,12 @@ ol.overflow {
519519
overflow-x: auto;
520520
overflow-y: hidden;
521521
}
522+
523+
/* ====================================== */
524+
/* -- Below are MMW Edits to base.scss -- */
525+
526+
tr,
527+
td {
528+
overflow-wrap: normal;
529+
/* Prevents words in tables being broken on narrow displays */
530+
}

0 commit comments

Comments
 (0)