Don't show the box shadow when in print mode.

master
voussoir 2022-03-14 15:06:37 -07:00
parent aa92a34d06
commit 90dc6304bf
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 7 additions and 1 deletions

View File

@ -42,9 +42,15 @@ article
margin-top: 20px;
margin-bottom: 20px;
padding: 16px;
box-shadow: #000 0px 0px 40px -10px;
background-color: var(--color_bodybg);
}
@media not print
{
article
{
box-shadow: #000 0px 0px 40px -10px;
}
}
@media screen and (min-width: 600px)
{