MM-58354 Fix numbered Markdown lists not wrapping long words (#27186)

This commit is contained in:
Harrison Healey 2024-06-03 11:44:07 -04:00 committed by GitHub
parent 527fe4a654
commit 76774e61b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -397,12 +397,14 @@ ol.markdown__list {
>li {
display: table-row;
counter-increment: list;
word-break: break-word;
&::before {
display: table-cell;
padding-right: 8px;
content: counter(list) ".";
text-align: right;
word-break: keep-all;
}
}
}