index.module.scss 653 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .TopicAdd {
  2. width: 100%;
  3. height: 100%;
  4. overflow-y: auto;
  5. overflow-y: overlay;
  6. border-radius: 10px;
  7. background-color: #fff;
  8. padding: 20px 0;
  9. :global {
  10. .main {
  11. position: relative;
  12. width: 800px;
  13. padding-left: 5px;
  14. .addAnswer {
  15. z-index: 10;
  16. position: absolute;
  17. right: 0;
  18. top: 110px;
  19. }
  20. .btnXBox{
  21. position: absolute;
  22. z-index: 11;
  23. top: 280px;
  24. left: 810px;
  25. .btnX{
  26. cursor: pointer;
  27. height: 32px;
  28. font-size: 18px;
  29. line-height: 32px;
  30. margin-bottom: 24px;
  31. }
  32. }
  33. }
  34. }
  35. }