0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-26 09:32:51 +00:00

unset padding on brewRenderer in @print

Fixes an issue with the padding being reflected in pdfs as a white stripe at the top.
This commit is contained in:
Gazook89
2024-08-23 18:45:08 -05:00
parent 561ff6283a
commit e3c90a8295

View File

@@ -3,7 +3,7 @@
.brewRenderer {
will-change : transform;
overflow-y : scroll;
padding-block : 30px;
padding-top : 30px;
:where(.pages) {
margin : 30px 0px;
@@ -76,6 +76,7 @@
.brewRenderer {
height: 100%;
overflow-y: unset;
padding-top: unset;
.pages {
margin: 0px;
&>.page {