1
0
Fork 0
blog/src/components/atoms/Image.module.scss

21 lines
314 B
SCSS
Raw Normal View History

2018-08-08 22:26:42 +02:00
@import 'mixins';
2018-07-17 23:33:55 +02:00
.imageWrap {
2019-10-02 13:35:50 +02:00
@include media-frame;
2018-08-08 22:26:42 +02:00
2019-10-02 13:35:50 +02:00
margin-left: auto;
margin-right: auto;
margin-bottom: $spacer;
display: block;
2018-07-17 23:33:55 +02:00
2019-10-02 13:35:50 +02:00
@media (min-width: 940px) {
max-width: 940px;
border-radius: 0.25rem;
overflow: hidden;
}
2018-09-16 15:39:31 +02:00
2019-10-02 13:35:50 +02:00
a:hover & {
border-color: $link-color !important;
}
2018-07-17 23:33:55 +02:00
}