index.less 632 B

123456789101112131415161718192021222324252627282930313233
  1. .drawerDiv {
  2. // width: 380px;
  3. // height: 340px;
  4. padding: 0 24px;
  5. background-color: #ffffff;
  6. border-radius: 10px;
  7. .title {
  8. display: flex;
  9. align-items: center;
  10. height: 100px;
  11. font-size: 22px;
  12. }
  13. .menuList {
  14. padding-bottom: 60px;
  15. .menuItem {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: center;
  20. box-sizing: border-box;
  21. height: 120px;
  22. color: #656872;
  23. font-size: 14px;
  24. border: 1px solid #eceff4;
  25. border-radius: 20px;
  26. cursor: pointer;
  27. .name {
  28. padding-top: 14px;
  29. }
  30. }
  31. }
  32. }