mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 18:06:35 +00:00
* fix(UI): graph legends is fixed * chore(UI): some changes regarding the color of the chart is updated * full view css is fixed * usage explorer graph is fixed * default query is removed * fix: scroll is removed
15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const LegendsContainer = styled.div`
|
|
height: 15%;
|
|
|
|
* {
|
|
::-webkit-scrollbar {
|
|
display: none !important;
|
|
}
|
|
|
|
-ms-overflow-style: none !important; /* IE and Edge */
|
|
scrollbar-width: none !important; /* Firefox */
|
|
}
|
|
`;
|