Skip to content

Commit 15a5c34

Browse files
authored
Fix table white-space behavior (#1450)
Fixes #1449 **Fix:** ![Screenshot 2025-04-09 at 1 10 18 PM](https://github.com/user-attachments/assets/fad45b2d-60d2-4997-aeb5-613619383e23)
1 parent 01c32ac commit 15a5c34

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

source/_static/scss/includes/_reset.scss

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -289,15 +289,19 @@ table.docutils {
289289
border-bottom-width: 0;
290290
}
291291
}
292+
}
292293

293-
td, th {
294-
&:first-child {
295-
border-left-width: 0;
296-
}
294+
td, th {
295+
&:first-child {
296+
border-left-width: 0;
297+
}
297298

298-
&:last-child {
299-
border-right-width: 0;
300-
}
299+
&:last-child {
300+
border-right-width: 0;
301+
}
302+
303+
* {
304+
white-space: normal;
301305
}
302306
}
303307
}

0 commit comments

Comments
 (0)