PagePathNavSticky.module.scss 314 B

123456789101112131415
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. .grw-page-path-nav-sticky :global {
  3. .sticky-inner-wrapper {
  4. z-index: bs.$zindex-sticky;
  5. }
  6. // TODO:Responsive font size
  7. // set smaller font-size when sticky
  8. .sticky-inner-wrapper.active {
  9. h1 {
  10. font-size: 1.75rem !important;
  11. }
  12. }
  13. }