I have developed a Vue.JS and Vuetify application inspired by the Google Contacts layout. The design includes both a toolbar and a navigation drawer.
My goal is to print the content from the browser without including the toolbar and nav drawer. To achieve this, I created a CSS class:
@media print {
.no-print {
display: none;
}
}
I assigned this class to the toolbar and nav drawer elements. Although they are hidden in the print preview, there seems to be some reserved space for them which prevents the content from stretching to fill the entire page.
How can I eliminate this reserved space?