Fix footer spacing on tournament edit page

This commit is contained in:
Felix Hamme 2018-12-12 16:02:16 +01:00
parent 909faff65c
commit 68aeade599
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import Head from 'next/head'; import Head from 'next/head';
import React from 'react'; import React from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
import { requestTournament } from '../js/api'; import { requestTournament } from '../js/api';
import { BigImage, Footer, TurniereNavigation } from '../js/CommonComponents.js'; import { BigImage, Footer, TurniereNavigation } from '../js/CommonComponents.js';
@ -48,7 +49,7 @@ class EditTournamentPage extends React.Component {
if(validCode) { if(validCode) {
return ( return (
<div> <div className='pb-5'>
<Head> <Head>
<title>Turnie.re - Turnier bearbeiten</title> <title>Turnie.re - Turnier bearbeiten</title>
</Head> </Head>
@ -83,7 +84,7 @@ class EditTournamentContent extends React.Component {
const { code } = this.props; const { code } = this.props;
return ( return (
<div> <div className='mb-5'>
<ReturnToTournamentButton/> <ReturnToTournamentButton/>
<EditTournamentPropertiesField ref={(field) => { this._edittournamentpropertiesfield = field; }}/> <EditTournamentPropertiesField ref={(field) => { this._edittournamentpropertiesfield = field; }}/>
<EditTeamField ref={(field) => { this._editteamfield = field; }}/> <EditTeamField ref={(field) => { this._editteamfield = field; }}/>