pal-sig c79223742f
fix(UI): graph legends is fixed (#461)
* 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
2021-12-10 14:28:31 +05:30

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 */
}
`;