mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 06:21:07 +08:00

* 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>
18 lines
295 B
TypeScript
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;
|
|
`;
|