mask.module.scss 577 B

123456789101112131415161718192021222324252627282930313233
  1. .mask-page {
  2. height: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. .mask-page-body {
  6. padding: 20px;
  7. overflow-y: auto;
  8. .search-bar {
  9. width: 100%;
  10. max-width: 100%;
  11. margin-bottom: 20px;
  12. }
  13. .mask-item {
  14. .mask-icon {
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. border: var(--border-in-light);
  19. border-radius: 10px;
  20. padding: 6px;
  21. }
  22. .mask-actions {
  23. display: flex;
  24. flex-wrap: nowrap;
  25. transition: all ease 0.3s;
  26. }
  27. }
  28. }
  29. }