fix: Lists with negative margin are cut off when printing to PDF. This is a pragmatic fix for the issue closes #7958

This commit is contained in:
Tom Moor
2024-11-23 11:59:34 -05:00
parent 84eb1b801d
commit 0663d191fc
+2 -2
View File
@@ -1068,11 +1068,11 @@ a:hover {
ul,
ol {
margin: 0 0.1em 0 -26px;
margin: 0 0.1em 0 ${props.staticHTML ? "0" : "-26px"};
padding: 0 0 0 48px;
&:dir(rtl) {
margin: 0 -26px 0 0.1em;
margin: 0 ${props.staticHTML ? "0" : "-26px"} 0 0.1em;
padding: 0 48px 0 0;
}
}