style.less 364 B

12345678910111213141516171819202122232425
  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: 5px;
  14. height:90vh;
  15. cursor: ew-resize;
  16. background-color:transparent;
  17. }
  18. }