Set label max width (#15710)

This commit is contained in:
Geido 2021-07-19 06:10:38 +02:00 committed by GitHub
parent ca873acd55
commit 4e79ffd471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,10 @@ const DatasourceItemContainer = styled.div`
height: ${({ theme }) => theme.gridUnit * 6}px;
cursor: pointer;
> div {
width: 100%;
}
:hover {
background-color: ${({ theme }) => theme.colors.grayscale.light2};
}