Added image section internals (And placeholder image)

This commit is contained in:
2018-05-16 18:00:41 +10:00
parent 455d77d0fb
commit aaa6f1de5a
3 changed files with 21 additions and 3 deletions

View File

@ -29,16 +29,18 @@ import Image from './../../image/Image';
import { Title, Subtitle } from './../../typography/Typography'; import { Title, Subtitle } from './../../typography/Typography';
export default function() { export default function() {
return ( return (
<Page style="home-page" className="p-home-page"> <Page style="home-page" className="p-home-page">
<Section full> <ImageSection src="//placehold.it/2400x1200" alt="domsPlace">
<PageBoundary full> <PageBoundary full>
<FloatingContentBox position="middle right" size="small" className="u-text-center "> <FloatingContentBox position="middle right" size="small" className="u-text-center ">
<Title>Development & Design</Title> <Title>Development & Design</Title>
<Subtitle>I'm not good at either.</Subtitle> <Subtitle>I'm not good at either.</Subtitle>
</FloatingContentBox> </FloatingContentBox>
</PageBoundary> </PageBoundary>
</Section> </ImageSection>
<Section full> <Section full>
Lorem Lorem

View File

@ -44,7 +44,11 @@ export default function(props) {
className={"c-image-section" + (props.className ? " " + props.className : "" ) } className={"c-image-section" + (props.className ? " " + props.className : "" ) }
> >
{ image } { image }
<div class="c-image-section__content">
<div class="c-image-section__content-inner">
{ props.children } { props.children }
</div>
</div>
</Section> </Section>
); );
} }

View File

@ -17,6 +17,18 @@
&.is-full { &.is-full {
.c-image-section__image { .c-image-section__image {
@include t-absolute-fill(); @include t-absolute-fill();
object-fit: cover;
object-position: bottom center;
}
}
&__content {
@include t-absolute-fill();
&-inner {
position: relative;
height: 100%;
width: 100%;
} }
} }
} }