1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-05-21 12:29:24 +00:00

Downloaded fontawesome locally instead of using CDN

This commit is contained in:
2025-05-15 17:09:24 -04:00
parent 58be6b8074
commit 5296b71bb9
90 changed files with 48553 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
.navbar-inverse.navbar-fixed-top {
z-index: 1040; /* Ensure main navbar is above tournament navbar */
}
#tournament-navbar {
top: 50px; /* Position below the first fixed navbar */
z-index: 1030; /* Explicitly set standard fixed navbar z-index */
}
/* Make desktop navbar dropdowns scrollable if they overflow */
@media (min-width: 768px) {
/* Target dropdowns in main nav and tournament nav specifically */
.navbar-fixed-top .dropdown-menu {
max-height: 70vh; /* Adjust as needed - 70% of viewport height */
overflow-y: auto;
}
}