mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
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.
12 lines
245 B
CSS
12 lines
245 B
CSS
/* 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;
|
|
}
|