_resizeBar.scss 476 B

123456789101112131415161718
  1. .c2di-resize-bar-v {
  2. height:100%;
  3. width:$resizebar-width;
  4. background-color: $background;
  5. cursor: col-resize;
  6. flex-shrink: 0;
  7. border-left:1px solid $background-lighter;
  8. border-right:1px solid $background-lighter;
  9. }
  10. .c2di-resize-bar-h {
  11. width:100%;
  12. height:$resizebar-width;
  13. background-color: $background;
  14. cursor: row-resize;
  15. flex-shrink: 0;
  16. border-top: 1px solid $background-lighter;
  17. border-bottom: 1px solid $background-lighter;
  18. }