EditorNavbarBottom.module.scss 580 B

1234567891011121314151617181920212223242526272829
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. @use '~/styles/variables' as var;
  3. @use '~/styles/mixins';
  4. @include mixins.at-editing() {
  5. .grw-editor-navbar-bottom :global {
  6. .grw-grant-selector {
  7. max-width: 250px;
  8. .material-symbols-outlined {
  9. padding-bottom: 2px;
  10. font-size: 19px;
  11. }
  12. }
  13. .btn-submit {
  14. width: 100px;
  15. }
  16. .btn-expand {
  17. // rotate icon
  18. i {
  19. display: inline-block;
  20. transition: transform 200ms;
  21. }
  22. &.expand i {
  23. transform: rotate(-180deg);
  24. }
  25. }
  26. }
  27. }