mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-24 19:04:08 +01:00
29 lines
446 B
SCSS
29 lines
446 B
SCSS
@import 'mixins';
|
|
|
|
.image {
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
.imageWrap {
|
|
@include media-frame;
|
|
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: $spacer;
|
|
display: block;
|
|
|
|
@media (min-width: 940px) {
|
|
max-width: 940px;
|
|
border-radius: .25rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
a:hover & {
|
|
border-color: $link-color !important;
|
|
}
|
|
}
|