Styles navbar for wider display and consistent spacing

Widens the navbar container to accommodate more content.
Adjusts padding of navbar items for tighter spacing.
Prevents line wrapping and enables horizontal scrolling on smaller screens.
This commit is contained in:
2025-11-01 12:14:36 +03:00
parent 6cdd2a8047
commit 7b35932a73
6 changed files with 285 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
/* Widen the navbar container */
.navbar .container {
max-width: 100%; /* adjust to your target width */
width: 95%;
}
/* Tighter spacing between navbar items */
.navbar-nav > li > a {
padding-left: 8px;
padding-right: 8px;
}