Skip to content

Commit

Permalink
Merge pull request #8168 from michaelchadwick/frontend-4293-stick-it-…
Browse files Browse the repository at this point in the history
…to-flyout-menu

nav-links in flyout now sticky and stay on top when page scrolled down
  • Loading branch information
dartajax authored Oct 1, 2024
2 parents 843049a + 169e458 commit 9382b39
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@
border-bottom: calc(20px * constants.$golden-ratio-large) solid c.$orange;

ul {
display: inline;
bottom: 0;
display: inline-block;
position: sticky;
top: 0;

.text {
clear: none;
Expand Down

0 comments on commit 9382b39

Please sign in to comment.