c-drawer.wxss 732 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .drawer {
  9. display: flex;
  10. flex-direction: column;
  11. width: 77vw;
  12. height: 100vh;
  13. }
  14. .drawer .drawer_1 {
  15. display: flex;
  16. justify-content: space-between;
  17. padding: 2vw;
  18. }
  19. .drawer .drawer_1 .left {
  20. flex-grow: 1;
  21. font-weight: bold;
  22. padding: 1vw 0;
  23. font-size: 16px;
  24. font-family: monospace;
  25. }
  26. .drawer .drawer_2 {
  27. flex-grow: 1;
  28. position: relative;
  29. padding: 0 2vw;
  30. }
  31. .drawer .drawer_2 .info {
  32. padding: 0 2vw;
  33. }
  34. .scroll-view {
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. right: 0;
  39. bottom: 0;
  40. }
  41. .scroll-view .list-scroll-view {
  42. display: flex;
  43. flex-direction: column;
  44. padding: 0 !important;
  45. }