ajustements des calendriers, ajout de matchs jouer vs joueur

This commit is contained in:
cedrick2711
2026-07-14 14:50:48 -04:00
parent 83ee10ca64
commit 4e7ecf0ab9
13 changed files with 338 additions and 41 deletions
+41
View File
@@ -949,6 +949,46 @@ a:hover { color: var(--primary-dark); }
gap: 4px;
}
/* Team Roster Display */
.team-roster-display {
font-size: 0.85rem;
color: var(--gray-600);
}
.team-roster-display small {
display: block;
margin-top: 2px;
}
.team-rosters {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.team-roster {
flex: 1;
min-width: 200px;
}
.team-roster h5 {
font-size: 0.9rem;
margin-bottom: 8px;
color: var(--gray-700);
}
.team-members-list {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.85rem;
}
.team-members-list li {
padding: 4px 0;
color: var(--gray-600);
}
@media (max-width: 768px) {
.sidebar {
width: var(--sidebar-collapsed);
@@ -970,4 +1010,5 @@ a:hover { color: var(--primary-dark); }
.content { padding: 16px; }
.top-bar { padding: 12px 16px; }
.flash-messages { padding: 0 16px; }
.team-rosters { flex-direction: column; }
}