Fixes to formatting. Bug with formatting on club page appears to be fixed

This commit is contained in:
Lucas Patenaude
2024-04-16 15:24:46 -06:00
parent 94788a8dbe
commit 705f6f96d6
2 changed files with 10 additions and 10 deletions

View File

@@ -4,19 +4,19 @@
display: flex;
flex-direction: row;
}
/* Child Containers */
/* Left 20% of #club-page-contents-container
/* Left 20% of #club-page-contents-container */
#club-information-container
{
width: 20%;
} */
#club-information-container {
display: flex;
flex-direction: column;
}
/* Right 80% of #club-page-contents-container */
#club-stats-and-players-container
{
width: 80%;

View File

@@ -3,7 +3,7 @@
<!-- Container on Top containing Club Information -->
<div id="club-header-container" class="information-container">
<img id="generated-page-header-logo" src="{{club.crest}}" alt="{{club.name}} Logo">
<h1 id="generated-page-header-title">{{club.name}}</h2>
<h1 id="generated-page-header-title">{{club.name}}</h1>
<img id="generated-page-header-flag" src="{{club.area.club_flag}}" alt="{{club.name}} Flag">
</div>