1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00
danbarber.me/_assets/stylesheets/components/_photo.scss
2018-11-10 16:17:37 -05:00

24 lines
350 B
SCSS

$photo-wide-max-width: 1024px;
.photo--wide {
padding-left: 0;
padding-right: 0;
}
@media only screen and (max-width: 1048px) {
.photo--wide {
max-width: 100%;
img {
margin: -0.5em 0;
padding: 0.5em 0;
}
}
}
@media only screen and (min-width: 1049px) {
.photo--wide {
max-width: $photo-wide-max-width;
}
}