I'm using Google PageSpeed Insights and one problem appears under "Remove unused CSS" I'm using a separate css for print-media:
<link href="/sass/print.min.css" rel="stylesheet" media="print" type="text/css" />
Apparently, PageSpeed Insights suggests that it should be removed, because it's not used (ofcourse).
If I remove the link-tag, my score increases with approx 5 points.
Why is it even loaded? What's best practice to have print-css on page, and still keep good score on PageSpeed Insights?