1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-01-05 03:15:07 +01:00

consolidate media-frame usage

This commit is contained in:
Matthias Kretschmann 2018-10-17 19:45:44 +02:00
parent b85d3af450
commit 87f05f3e82
Signed by: m
GPG Key ID: 606EEEF3C479A91F
5 changed files with 8 additions and 34 deletions

View File

@ -30,33 +30,15 @@
margin-top: $spacer * 1.5; margin-top: $spacer * 1.5;
margin-bottom: $spacer * 1.5; margin-bottom: $spacer * 1.5;
> div {
@include media-frame();
border-radius: 0;
@media (min-width: $screen-sm) {
border-radius: $border-radius;
}
}
a & { a & {
position: relative; position: relative;
display: block; display: block;
} }
a:hover & { a:hover & {
> div {
border-color: $link-color !important;
}
.postImageTitle { .postImageTitle {
opacity: 1; opacity: 1;
transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);
} }
} }
img {
border-radius: 0;
}
} }

View File

@ -6,8 +6,8 @@ import styles from './Image.module.scss'
const Image = ({ fluid, fixed, alt }) => ( const Image = ({ fluid, fixed, alt }) => (
<Img <Img
className={styles.image} className={styles.imageWrap}
outerWrapperClassName={styles.imageWrap} imgStyle={styles.image}
backgroundColor="#dfe8ef" backgroundColor="#dfe8ef"
fluid={fluid ? fluid : null} fluid={fluid ? fluid : null}
fixed={fixed ? fixed : null} fixed={fixed ? fixed : null}

View File

@ -68,16 +68,8 @@
} }
a { a {
> div {
@include media-frame();
}
&:hover, &:hover,
&:focus { &:focus {
> div {
border-color: $link-color !important;
}
.featuredTitle { .featuredTitle {
opacity: 1; opacity: 1;
transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);

View File

@ -39,19 +39,19 @@
} }
} }
img {
margin-bottom: 0;
}
a { a {
display: block; display: block;
> div { > div {
@include media-frame; margin-bottom: 0;
} }
&:hover, &:hover,
&:focus { &:focus {
> div {
border-color: $link-color;
}
h4 { h4 {
color: $link-color; color: $link-color;
} }

View File

@ -16,7 +16,7 @@ const Page = ({ title, location, section, children }) => {
Page.propTypes = { Page.propTypes = {
title: PropTypes.string.isRequired, title: PropTypes.string.isRequired,
children: PropTypes.any.isRequired, children: PropTypes.any.isRequired,
section: PropTypes.object, section: PropTypes.string,
location: PropTypes.object location: PropTypes.object
} }