Add lightbox media queries.

Add media queries to hide the image actions if on mobile (probably
unnecessary to have), and make the image description (name, author)
close to full width.
This commit is contained in:
Brock Whittaker 2016-10-11 13:32:26 -07:00 committed by Tim Abbott
parent 162ee29aee
commit 3494fa0635
1 changed files with 10 additions and 0 deletions

View File

@ -145,3 +145,13 @@
#overlay .clear-float {
clear: both;
}
@media (max-width: 450px) {
#overlay .image-actions {
display: none;
}
#overlay .image-description {
width: calc(100% - 100px);
}
}