Added minheights to the page

This commit is contained in:
Dom Masters
2018-05-07 07:31:41 +10:00
parent 9e94ad1599
commit 135dc5e5f0
7 changed files with 38 additions and 3 deletions

View File

@ -33,7 +33,7 @@ class Homepage extends React.Component {
render() { render() {
return ( return (
<Page style="home-page"> <Page style="home-page">
<VideoSection> <VideoSection full>
Test Test
</VideoSection> </VideoSection>
</Page> </Page>

View File

@ -32,7 +32,7 @@ class VideoSection extends React.Component {
render() { render() {
return ( return (
<Section full={this.props.full}> <Section full={this.props.full}>
<video class="c-video-section"> <video className="c-video-section">
</video> </video>

View File

@ -8,4 +8,5 @@
* 1.0.0 - 2018/05/05 * 1.0.0 - 2018/05/05
*/ */
.c-page { .c-page {
min-height: 100vh;
} }

View File

@ -1,7 +1,17 @@
/*
* Section
* Styles for the base section component.
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/05/07
*/
.c-section { .c-section {
//border: 1px solid red;
width: 100%; width: 100%;
&--full { &--full {
height: 100%; height: 100vh;
} }
} }

View File

@ -0,0 +1,11 @@
/*
* Video Section
* Styles for Video Sections, usually contains videos.
*
* Dependencies:
*
* Version:
* 1.0.0 - 2018/05/03
*/
.c-video-section {
}

View File

@ -47,11 +47,15 @@
@import './elements/_headings.scss'; @import './elements/_headings.scss';
//Objects //Objects
@import './objects/main.scss';
@import './objects/_app.scss'; @import './objects/_app.scss';
@import './objects/_navbar.scss'; @import './objects/_navbar.scss';
//Components //Components
@import './components/_page.scss'; @import './components/_page.scss';
@import './components/_section.scss';
@import './components/_video-section.scss';
//Vendor //Vendor
@import './vendor/_fonts.scss'; @import './vendor/_fonts.scss';

View File

@ -0,0 +1,9 @@
/*
* Main
* Styles for the main container
*
* Version:
* 1.0.0 - 2018/05/07
*/
.o-main {
}