Adjusted styles a bit more, fixed a scroll overflow bug

This commit is contained in:
2018-05-12 20:57:09 +10:00
parent bc54923f64
commit 556a903afa
5 changed files with 13 additions and 19 deletions

View File

@ -25,7 +25,7 @@ import React from 'react';
export default function(props) {
return (
<div className="c-page__boundary">
<div className={"c-page__boundary" + (props.full ? " is-full" : "") }>
{ props.children }
</div>
);

View File

View File

@ -32,25 +32,14 @@ import { Title, Subtitle } from './../../typography/Typography';
export default function() {
return (
<Page style="home-page" className="p-home-page">
<ImageSection
full
src={ require('./../../images/test/img_red.png') }
sources={[
{ src: require('./../../images/test/320x320.png'), size: 320 },
{ src: require('./../../images/test/320x320x2.png'), size: 320, scale: 2 },
{ src: require('./../../images/test/640x640.png'), size: 640 },
{ src: require('./../../images/test/1280x1280.png'), size: 640, scale: 2 },
{ src: require('./../../images/test/1280x1280.png'), size: 1280 }
]}
>
<PageBoundary fill>
<FloatingContentBox position="middle right" size="small" className="u-text-center p-home-page__video-content">
<Title>My Cool Page</Title>
<Subtitle>Lorem ipsum dolor</Subtitle>
<Button>Hello</Button>
<Section full>
<PageBoundary full>
<FloatingContentBox position="middle right" size="small" className="u-text-center ">
<Title>Development & Design</Title>
<Subtitle>I'm not good at either.</Subtitle>
</FloatingContentBox>
</PageBoundary>
</ImageSection>
</Section>
<Section full>
Lorem

View File

@ -14,5 +14,10 @@
&__boundary {
max-width: $s-screen-boundary;
margin: 0 auto;
&.is-full {
position: relative;
height: 100%;
}
}
}

View File

@ -8,7 +8,7 @@
* 1.0.0 - 2018/05/03
*/
.o-app {
display: inline-block;//Fixes collapsing margins on children.
//display: inline-block;//Fixes collapsing margins on children.
min-height: 100vh;
width: 100%;