mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-17 22:01:28 +08:00

* feat: Added Resizable Wrapper for AntD Table * chore: Merging upstream develop into fork * chore: updated lock file * fix: Lint issues resolved * fix: Lint issues resolved * fix: Types issues * fix: linting issues * fix: Types issues * fix: POC of new resize lib * fix: linting issues * chore: resize is updated * fix: added old lib logic * fix: removed console.log * chore: types are updated * chore: removed un used style --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com>
12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const SpanStyle = styled.span`
|
|
position: absolute;
|
|
right: -5px;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
width: 10px;
|
|
height: 100%;
|
|
cursor: col-resize;
|
|
`;
|