mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 18:19:13 +08:00
fix: scrollbar issue on widget (#2359)
* fix: Removed Strict mode to stop render twice * fix: scrollbar issue on widget
This commit is contained in:
parent
06a55ccdd6
commit
174fc107c2
@ -6,7 +6,10 @@ export const LegendsContainer = styled.div`
|
|||||||
|
|
||||||
* {
|
* {
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 0.5rem;
|
width: 0.3rem;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar:horizontal {
|
||||||
|
height: 0.3rem;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
@ -18,5 +21,8 @@ export const LegendsContainer = styled.div`
|
|||||||
::-webkit-scrollbar-thumb:hover {
|
::-webkit-scrollbar-thumb:hover {
|
||||||
background: ${themeColors.matterhornGrey};
|
background: ${themeColors.matterhornGrey};
|
||||||
}
|
}
|
||||||
|
::-webkit-scrollbar-corner {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user