EditorNavbarBottom.module.scss 546 B

12345678910111213141516171819202122232425262728
  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. .material-symbols-outlined {
  8. padding-bottom: 2px;
  9. font-size: 19px;
  10. }
  11. }
  12. .btn-submit {
  13. width: 100px;
  14. }
  15. .btn-expand {
  16. // rotate icon
  17. i {
  18. display: inline-block;
  19. transition: transform 200ms;
  20. }
  21. &.expand i {
  22. transform: rotate(-180deg);
  23. }
  24. }
  25. }
  26. }