Fix for generated pages styling. Error in CSS code was causing diagonal line at end of page header to not show

This commit is contained in:
Lucas Patenaude
2024-04-16 15:33:15 -06:00
parent f80b6e1fff
commit 7f7b79d63e

View File

@@ -42,6 +42,11 @@
transform: skewX(-20deg); /* Skew the banner to create a triangular side */ transform: skewX(-20deg); /* Skew the banner to create a triangular side */
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4); box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
/* --- FORMAT CHILD ITEMS (logo, league name, flag) --- */
display: flex; /* Enable flexbox layout */
flex-direction: row; /* Arrange child elements horizontally */
}
/* Adds Red Diagonal Strip at the end of the #league-information-container */ /* Adds Red Diagonal Strip at the end of the #league-information-container */
.information-container::after .information-container::after
{ {
@@ -54,11 +59,6 @@
background-color: red; /* Red color */ background-color: red; /* Red color */
} }
/* --- FORMAT CHILD ITEMS (logo, league name, flag) --- */
display: flex; /* Enable flexbox layout */
flex-direction: row; /* Arrange child elements horizontally */
}
/* /*
=========================== ===========================
LEAGUE INFORMATION CHILD ITEMS LEAGUE INFORMATION CHILD ITEMS