mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-28 08:32:02 +08:00
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;
|
|
`;
|