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