style.module.less 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .issue-card-wrapper {
  2. width: calc(100% - var(--main-space) * 2);
  3. margin: var(--main-space);
  4. background: #ffffff;
  5. box-shadow: 0px 18px 22px 1px rgba(0, 0, 0, 0.06);
  6. border-radius: 8px;
  7. padding: 20px 20px 40px 20px;
  8. .issue-card-header {
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-between;
  12. font-size: 28px;
  13. & > view {
  14. flex: 1;
  15. line-height: 42px;
  16. color: #202020;
  17. &:last-child {
  18. flex: none;
  19. font-size: 24px;
  20. color: #222;
  21. }
  22. }
  23. }
  24. .issue-card-body {
  25. padding: 20px;
  26. font-size: 24px;
  27. color: #333;
  28. line-height: 54px;
  29. height: 252px;
  30. margin-top: calc(var(--main-space) / 2);
  31. }
  32. .issue-card-footer {
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-between;
  36. font-size: 28px;
  37. line-height: 32px;
  38. color: #202020;
  39. margin-top: var(--main-space);
  40. image {
  41. display: inline-block;
  42. width: 25px;
  43. height: 29px;
  44. margin-right: 10px;
  45. vertical-align: middle;
  46. }
  47. & > view {
  48. flex: 1;
  49. &:last-child {
  50. flex: none;
  51. }
  52. }
  53. }
  54. }