samiz-dat / hyper-reader

an editor for hyper-readings based on substance.io
http://www.hyperreadings.info
20 stars 4 forks source link

Hide UI elements from printed hyper-readings #31

Closed e-e-e closed 6 years ago

e-e-e commented 6 years ago

This should be as simple as adding this css to elements that we do not want displayed.

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}
e-e-e commented 6 years ago

fixed here https://github.com/e-e-e/hyper-reader/pull/35