GrowiContextualSubNavigation.module.scss 460 B

123456789101112131415161718192021
  1. @use '~/styles/mixins';
  2. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  3. .grw-contextual-sub-navigation {
  4. @include bs.media-breakpoint-down(md) {
  5. // set min-height to keep the height
  6. // even if the item is empty on the share link page
  7. min-height: 46px;
  8. }
  9. }
  10. @include mixins.editing {
  11. .grw-contextual-sub-navigation {
  12. position: fixed;
  13. right: 0;
  14. // unset colors
  15. background-color: unset;
  16. backdrop-filter: unset;
  17. }
  18. }