This commit is contained in:
Jan Prochazka
2021-01-23 07:22:09 +01:00
parent 37cc86f8d2
commit 451af5d09f
141 changed files with 763 additions and 787 deletions

View File

@@ -6,14 +6,14 @@ import { FontIcon } from '../icons';
import useTheme from '../theme/useTheme';
const IconWrapper = styled.div`
color: ${(props) => props.theme.widget_font2};
color: ${props => props.theme.widget_font2};
font-size: ${dimensions.widgetMenu.iconFontSize};
height: ${dimensions.widgetMenu.iconSize}px;
display: flex;
align-items: center;
justify-content: center;
${(props) =>
${props =>
// @ts-ignore
props.isSelected &&
`
@@ -25,7 +25,7 @@ const IconWrapper = styled.div`
`}
&:hover {
color: ${(props) => props.theme.widget_font1};
color: ${props => props.theme.widget_font1};
}
`;