jsonresume-theme-elegant icon indicating copy to clipboard operation
jsonresume-theme-elegant copied to clipboard

Make the theme printable

Open AlexisTM opened this issue 6 years ago • 1 comments

By adding page-break-inside: avoid; to the card-nested CSS, the theme becomes printable with nice transitions.

  .card-nested {
    min-height: 0;
    border-width: 1px 0 0 0;
    page-break-inside: avoid;
  }

By adding the following CSS, the border of the background is not visible while printing.

  @media print {
    .background-card {
      border: none;
    }
  }

AlexisTM avatar Jul 02 '18 08:07 AlexisTM

Thanks for the suggestion, I'll have a look tonight plus I realised that the icons don't render anymore :O

mudassir0909 avatar Jul 09 '18 02:07 mudassir0909