main.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .groupInfo {
  2. padding: 0;
  3. box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  4. border-radius: 8px;
  5. header {
  6. width: 100%;
  7. height: 63px;
  8. padding: 20px 24px 20px 24px;
  9. border-bottom: 1px solid #D9D9D9;
  10. span {
  11. font-weight: 500;
  12. font-size: 16px;
  13. color: rgba(0, 0, 0, 0.88);
  14. line-height: 24px;
  15. }
  16. button {
  17. margin-top: 13px;
  18. }
  19. }
  20. .el-dialog__body {
  21. display: flex;
  22. flex-direction: column;
  23. gap: 10px;
  24. width: 100%;
  25. height: calc(100% - 63px);
  26. overflow-y: auto;
  27. .group {
  28. padding: 15px 20px 15px 10px;
  29. }
  30. }
  31. }
  32. .userInfo {
  33. padding: 0;
  34. box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  35. border-radius: 8px;
  36. header {
  37. width: 100%;
  38. height: 63px;
  39. padding: 20px 24px 20px 24px;
  40. span {
  41. font-weight: 500;
  42. font-size: 16px;
  43. color: rgba(0, 0, 0, 0.88);
  44. line-height: 24px;
  45. }
  46. button {
  47. margin-top: 13px;
  48. }
  49. }
  50. .el-dialog__body {
  51. width: 100%;
  52. padding: 16px;
  53. height: calc(100% - 63px);
  54. overflow-y: auto;
  55. }
  56. }