Fix footer spacing on tournament edit page
This commit is contained in:
parent
909faff65c
commit
68aeade599
|
|
@ -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; }}/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue