offcanvas-menu-editor.css 614 B

123456789101112131415161718192021222324252627282930313233
  1. .wp-block-srh-offcanvas-menu {
  2. display: flex;
  3. align-items: center;
  4. padding: 10px;
  5. border: 1px dashed #ccc;
  6. }
  7. .editor-styles-wrapper .hamburger-toggle {
  8. display: flex;
  9. align-items: center;
  10. gap: 8px;
  11. background: none;
  12. border: none;
  13. cursor: pointer;
  14. padding: 5px;
  15. }
  16. .editor-styles-wrapper .hamburger-lines {
  17. display: flex;
  18. flex-direction: column;
  19. gap: 4px;
  20. }
  21. .editor-styles-wrapper .hamburger-lines span {
  22. display: block;
  23. width: 25px;
  24. height: 3px;
  25. background-color: currentColor;
  26. }
  27. .editor-styles-wrapper .menu-text {
  28. font-size: 14px;
  29. }