mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-11 12:21:28 +08:00

* fix: Removed Strict mode to stop render twice * fix: graph flickering issue on trace page
23 lines
455 B
TypeScript
23 lines
455 B
TypeScript
import { themeColors } from 'constants/theme';
|
|
import styled from 'styled-components';
|
|
|
|
export const LegendsContainer = styled.div`
|
|
height: 10%;
|
|
|
|
* {
|
|
::-webkit-scrollbar {
|
|
width: 0.5rem;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: ${themeColors.royalGrey};
|
|
border-radius: 0.625rem;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: ${themeColors.matterhornGrey};
|
|
}
|
|
}
|
|
`;
|