chapter.module.less 539 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. min-width: 266px;
  5. max-width: 266px;
  6. height: 100vh;
  7. color: #333;
  8. font-size: 12px;
  9. box-sizing: border-box;
  10. background: #fff;
  11. }
  12. .pointHead {
  13. display: flex;
  14. align-items: center;
  15. padding: 13px 10px 15px 15px;
  16. flex-shrink: 0;
  17. font-size: 14px;
  18. img {
  19. width: 16px;
  20. height: 16px;
  21. margin-right: 7px;
  22. }
  23. }
  24. .content {
  25. flex: 1;
  26. overflow-x: hidden;
  27. overflow-y: auto;
  28. padding: 0 20px;
  29. &::-webkit-scrollbar {
  30. width: 0;
  31. display: none;
  32. }
  33. }