fix(explore): Certified metric icons are various sizes (#12690)

This commit is contained in:
Geido
2021-01-22 22:14:40 +01:00
committed by GitHub
parent 4255c22d01
commit b32b6cd5de

View File

@@ -153,9 +153,14 @@ const LabelContainer = styled.div`
display: inline;
}
.metric-option > .option-label {
overflow: hidden;
text-overflow: ellipsis;
.metric-option {
& > svg {
min-width: ${({ theme }) => `${theme.gridUnit * 4}px`};
}
& > .option-label {
overflow: hidden;
text-overflow: ellipsis;
}
}
`;