Added minheights to the page
This commit is contained in:
@ -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>
|
||||||
|
@ -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>
|
||||||
|
|
||||||
|
@ -8,4 +8,5 @@
|
|||||||
* 1.0.0 - 2018/05/05
|
* 1.0.0 - 2018/05/05
|
||||||
*/
|
*/
|
||||||
.c-page {
|
.c-page {
|
||||||
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
11
public/styles/components/_video-section.scss
Normal file
11
public/styles/components/_video-section.scss
Normal 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 {
|
||||||
|
}
|
@ -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';
|
||||||
|
9
public/styles/objects/main.scss
Normal file
9
public/styles/objects/main.scss
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/*
|
||||||
|
* Main
|
||||||
|
* Styles for the main container
|
||||||
|
*
|
||||||
|
* Version:
|
||||||
|
* 1.0.0 - 2018/05/07
|
||||||
|
*/
|
||||||
|
.o-main {
|
||||||
|
}
|
Reference in New Issue
Block a user