fix spacing for desktop
This commit is contained in:
@@ -72,6 +72,7 @@ const TeamPanel = () => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<section className="section">
|
<section className="section">
|
||||||
|
<div className="container">
|
||||||
<h1 className="title">{activeTeam.name}</h1>
|
<h1 className="title">{activeTeam.name}</h1>
|
||||||
<h2 className="subtitle">
|
<h2 className="subtitle">
|
||||||
{activeTeam.location}, {activeTeam.country}
|
{activeTeam.location}, {activeTeam.country}
|
||||||
@@ -203,7 +204,9 @@ const TeamPanel = () => {
|
|||||||
</div>
|
</div>
|
||||||
{error?.message && (
|
{error?.message && (
|
||||||
<p
|
<p
|
||||||
className={"help" + (error.ok ? " is-success" : " is-danger")}
|
className={
|
||||||
|
"help" + (error.ok ? " is-success" : " is-danger")
|
||||||
|
}
|
||||||
>
|
>
|
||||||
{error.message}
|
{error.message}
|
||||||
</p>
|
</p>
|
||||||
@@ -228,9 +231,12 @@ const TeamPanel = () => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section className="section">
|
<section className="section">
|
||||||
|
<div className="container">
|
||||||
<Calendar playerId={player.id} />
|
<Calendar playerId={player.id} />
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user