list.less 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .main {
  2. height: 91vh;
  3. background-color: var(--bgColor);
  4. .one {
  5. display: flex;
  6. flex-direction: row;
  7. width: 96vw;
  8. padding: 2vw;
  9. .one_1 {
  10. flex-grow: 1;
  11. input {
  12. padding: 1vw 2vw 1.6vw 2vw;
  13. border-radius: 2px;
  14. font-size: var(--txtSize);
  15. background-color: var(--f1Color);
  16. }
  17. }
  18. .one_2 {
  19. width: 15vw;
  20. button {
  21. width: 100%;
  22. font-size: var(--btnSize);
  23. padding: 2vw;
  24. }
  25. }
  26. }
  27. .two {
  28. flex-grow: 1;
  29. position: relative;
  30. width: 100vw;
  31. background-color: #0000ff;
  32. }
  33. }
  34. .scroll-view {
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. right: 0;
  39. bottom: 0;
  40. .list-scroll-view {
  41. display: flex;
  42. flex-direction: column;
  43. }
  44. }