dnazarenkoo 8f1451e154
feat: add the ability to drag columns (#3100)
* feat: add the ability to drag columns

* feat: add the ability to drag columns in the logs explorer

* feat: update drag logic

* fix: resolve comments

* feat: resolve comment regarding error handling

---------

Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
Co-authored-by: Palash Gupta <palashgdev@gmail.com>
2023-07-18 17:18:34 +05:30

18 lines
295 B
TypeScript

import styled from 'styled-components';
export const SpanStyle = styled.span`
position: absolute;
right: -0.313rem;
bottom: 0;
z-index: 1;
width: 0.625rem;
height: 100%;
cursor: col-resize;
`;
export const DragSpanStyle = styled.span`
display: flex;
margin: -1rem;
padding: 1rem;
`;