PagePathNav.module.scss 495 B

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