mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user