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() {
return (
<Page style="home-page">
<VideoSection>
<VideoSection full>
Test
</VideoSection>
</Page>

View File

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

View File

@ -8,4 +8,5 @@
* 1.0.0 - 2018/05/05
*/
.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 {
//border: 1px solid red;
width: 100%;
&--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';
//Objects
@import './objects/main.scss';
@import './objects/_app.scss';
@import './objects/_navbar.scss';
//Components
@import './components/_page.scss';
@import './components/_section.scss';
@import './components/_video-section.scss';
//Vendor
@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 {
}