Skip to content
Discussion options

You must be logged in to vote

Hi @zsofiaj We were separately messaging over email so I want to make sure I post the fix for this issue here:

For the spacing issues in that first image of the group and the endnotes, they’re related to the same lines of CSS, the ones you found in the `quire-page.scss` file. And that turns out to be the best place to fix them. So open that file and look for these lines:
 
+ .quire-page__content p:first-child,
+ .quire-page__content figure:first-child {
  @media print {
    padding-top: 1.375in;
  }
}
 
And change them to:
 
+ .quire-page__content .content > p:first-child,
+ .quire-page__content .content > figure:first-child {
  @media print {
    padding-top: 1.375in;
  }
}

Thank you to @…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Erin-Cecele
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants