add print css. hides the sidebar, keeps the logo

This commit is contained in:
Paul DeBruicker 2020-06-25 07:43:12 -07:00
parent 16c18c1020
commit d3c389ccc5
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
@media print{
.side-bar{
width: 100%;
height: auto;
.main-nav, footer{
display: none;
}
}
.main-content{
margin-left: 20px;
}
}

View File

@ -3,3 +3,4 @@
@import "./typography";
@import "./lists";
@import "./spacing";
@import "./print";