style.less 299 B

12345678910111213141516171819
  1. .ResizableContainer {
  2. position: relative;
  3. height: 100%;
  4. .resizable {
  5. height: 100%;
  6. overflow: hidden;
  7. }
  8. .resizer {
  9. position: absolute;
  10. z-index: 999;
  11. right: 0;
  12. top: 0;
  13. width: 1px;
  14. height: 90vh;
  15. cursor: ew-resize;
  16. background-color: transparent;
  17. }
  18. }