mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 10:26:40 +00: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;
|
||
|
|
`;
|