EditorNavbarBottom.module.scss 760 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @use '@growi/core/scss/bootstrap/init' as bs;
  2. @use '~/styles/variables' as var;
  3. @use '~/styles/mixins';
  4. @include mixins.editing() {
  5. .grw-editor-navbar-bottom :global {
  6. .grw-grant-selector {
  7. @include bs.media-breakpoint-down(sm) {
  8. .btn .label {
  9. display: none;
  10. }
  11. }
  12. @include bs.media-breakpoint-up(md) {
  13. .dropdown-toggle {
  14. min-width: 100px;
  15. // caret
  16. &::after {
  17. margin-left: 1em;
  18. }
  19. }
  20. }
  21. }
  22. .btn-submit {
  23. width: 100px;
  24. }
  25. .btn-expand {
  26. // rotate icon
  27. i {
  28. display: inline-block;
  29. transition: transform 200ms;
  30. }
  31. &.expand i {
  32. transform: rotate(-180deg);
  33. }
  34. }
  35. }
  36. }