PagePathNav.module.scss 473 B

12345678910111213141516171819202122232425262728
  1. @use '@growi/core/scss/bootstrap/init' as bs;
  2. @use '@growi/ui/scss/atoms/btn-muted';
  3. .grw-mr-02em {
  4. margin-right: 0.2em;
  5. }
  6. .grw-page-path-nav-sticky :global {
  7. min-height: 75px;
  8. .sticky-inner-wrapper {
  9. z-index: bs.$zindex-sticky;
  10. }
  11. // set smaller font-size when sticky
  12. .sticky-inner-wrapper.active {
  13. h1 {
  14. font-size: 1.75rem !important;
  15. }
  16. }
  17. }
  18. .grw-page-path-nav :global {
  19. .btn-copy {
  20. @include btn-muted.colorize(bs.$orange);
  21. }
  22. }