groupConstants.ts 423 B

12345678910111213141516171819202122232425
  1. // group
  2. const rowStyleBase = {
  3. width: '100%',
  4. height: '8px',
  5. flexShrink: 0,
  6. margin: '0',
  7. cursor: 'row-resize',
  8. } as const;
  9. const colStyleBase = {
  10. width: '8px',
  11. flexShrink: 0,
  12. height: '100%',
  13. margin: '0',
  14. cursor: 'col-resize',
  15. } as const;
  16. export const directionStyles = {
  17. horizontal: {
  18. ...colStyleBase,
  19. },
  20. vertical: {
  21. ...rowStyleBase,
  22. }
  23. } as const;