style.module.less 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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: 52px;
  16. color: #202020;
  17. &:last-child {
  18. flex: none;
  19. color: #222;
  20. }
  21. }
  22. }
  23. .issue-card-body {
  24. padding: 20px;
  25. font-size: 30px;
  26. color: #333;
  27. line-height: 54px;
  28. height: 252px;
  29. margin-top: calc(var(--main-space) / 2);
  30. }
  31. .issue-card-footer {
  32. display: flex;
  33. align-items: center;
  34. justify-content: space-between;
  35. font-size: 28px;
  36. line-height: 32px;
  37. color: #202020;
  38. margin-top: var(--main-space);
  39. image {
  40. display: inline-block;
  41. width: 25px;
  42. height: 29px;
  43. margin-right: 10px;
  44. vertical-align: middle;
  45. }
  46. & > view {
  47. flex: 1;
  48. &:last-child {
  49. flex: none;
  50. }
  51. }
  52. }
  53. }