Border radius fixed (#1985)

This commit is contained in:
Kirill Morozov 2022-05-17 12:04:01 +03:00 committed by GitHub
parent 26e84ff185
commit 06864984a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,27 +38,8 @@ export const IndicatorsWrapper = styled.div`
display: flex;
gap: 1px;
flex-wrap: wrap;
> ${IndicatorWrapper} {
&:first-child {
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
&:last-child {
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
}
@media screen and (max-width: 1023px) {
> ${IndicatorWrapper} {
&:first-child,
&:last-child {
border-radius: 0;
}
}
}
border-radius: 8px;
overflow: auto;
`;
export const SectionTitle = styled.h5`