Skip to content

Commit 1ac88a9

Browse files
jamezpclaude
andcommitted
Hide notch spans in footer navigation
Removes display of .notch elements in footer that were causing alignment inconsistencies between navigation items. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Signed-off-by: James R. Perkins <jperkins@ibm.com>
1 parent 7cdc99a commit 1ac88a9

1 file changed

Lines changed: 20 additions & 5 deletions

File tree

public/css/bootstrap-theme.css

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -437,22 +437,32 @@ footer#projsubnav_footer .container {
437437

438438
footer#projsubnav_footer > .container > ul {
439439
display: flex !important;
440+
flex-direction: row !important;
440441
flex-wrap: wrap !important;
441-
gap: 2rem !important;
442+
justify-content: center !important;
443+
align-items: center !important;
444+
gap: 0 2.5rem !important;
442445
list-style: none !important;
443446
padding: 0 !important;
444447
margin: 0 !important;
445448
width: 100% !important;
446449
}
447450

448451
footer#projsubnav_footer > .container > ul > li {
449-
display: block !important;
450-
flex: 1 1 150px !important;
451-
min-width: 150px !important;
452-
max-width: 200px !important;
452+
display: inline-flex !important;
453+
flex: 0 0 auto !important;
454+
width: auto !important;
455+
min-width: auto !important;
456+
max-width: none !important;
453457
list-style: none !important;
454458
float: none !important;
455459
padding: 0 !important;
460+
margin: 0 !important;
461+
}
462+
463+
footer#projsubnav_footer > .container > ul > li a {
464+
display: inline-block !important;
465+
white-space: nowrap !important;
456466
}
457467

458468
footer#projsubnav_footer a {
@@ -493,6 +503,11 @@ footer#projsubnav_footer ul.level1 a {
493503
font-weight: 400 !important;
494504
}
495505

506+
/* Hide notch spans in footer */
507+
footer#projsubnav_footer .notch {
508+
display: none !important;
509+
}
510+
496511
/* Dark mode footer nav */
497512
[data-bs-theme="dark"] footer#projsubnav_footer {
498513
border-top-color: var(--resteasy-border) !important;

0 commit comments

Comments
 (0)