Merge pull request #35073 from ahmadabdolsaheb/footer/spacer

fix: add spacer above footer
This commit is contained in:
Ahmad Abdolsaheb
2019-02-06 22:11:34 +03:00
committed by mrugesh mohapatra
parent 4605232212
commit f510ad9d61
2 changed files with 3 additions and 4 deletions

View File

@ -21,6 +21,7 @@ import OfflineWarning from '../OfflineWarning';
import Flash from '../Flash'; import Flash from '../Flash';
import Header from '../Header'; import Header from '../Header';
import Footer from '../Footer'; import Footer from '../Footer';
import Spacer from '../helpers/Spacer';
import './global.css'; import './global.css';
import './layout.css'; import './layout.css';
@ -164,6 +165,8 @@ class DefaultLayout extends Component {
) : null} ) : null}
{children} {children}
</div> </div>
<hr/>
<Spacer size={3}/>
<Footer /> <Footer />
</Fragment> </Fragment>
); );

View File

@ -240,10 +240,6 @@ const IndexPage = () => (
<BigCallToAction /> <BigCallToAction />
<Spacer /> <Spacer />
<Spacer /> <Spacer />
<hr />
<Spacer />
<Spacer />
<Spacer />
</Grid> </Grid>
</Fragment> </Fragment>
); );