Skip to content

Commit 5f29220

Browse files
Fixed Navbar Overflowing to Next Line (#2867)
* updated navbar fix * Revert snapshot change --------- Co-authored-by: Richard Dominick <34370238+RichDom2185@users.noreply.github.com>
1 parent 5592455 commit 5f29220

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/styles/_navigationBar.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
*/
44
.NavigationBar {
55
width: 100%;
6-
flex: 0 0 auto;
6+
display: flex; /* Establish flex container */
7+
justify-content: space-between; /* Align children to both ends */
8+
flex-wrap: nowrap; /* Prevent wrapping */
79
padding: 0px 10px;
810

911
.thin-divider {

0 commit comments

Comments
 (0)