navbarを画面上部に固定する
https://gyazo.com/3ab148355fd954d0fe109d7539c93881
code:css
@import '/api/code/progfay-pub/navbarを画面上部に固定する/style.css';
code:style.css
body:not(.presentation) {
padding-top: 90px;
padding-right: 0 !important
}
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 990;
overflow: unset;
}
.dropdown.open .dropdown-menu {
position: absolute;
max-height: calc(100vh - 100px);
overflow-y: auto
}
.page-menu { top: 64px }
.page-menu .dropdown.open .dropdown-menu { position: absolute; top: 0 }
a.mobile-pagemenu-toggle { display: none !important }