itemlist.scss 536 B

1234567891011121314151617181920212223242526272829303132333435
  1. .list {
  2. padding: 20px;
  3. &__item {
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: space-between;
  7. background: #FFFFFF;
  8. padding: 20px;
  9. font-size: 28px;
  10. border-radius: 10px;
  11. margin-bottom: 17px;
  12. &__left {
  13. width: 80%;
  14. display: flex;
  15. flex-direction: column;
  16. overflow: hidden;
  17. &-line {
  18. color: #9A9A9A;
  19. white-space: nowrap;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. }
  23. }
  24. &__right {
  25. font-size: 28px;
  26. }
  27. }
  28. }