Web: Client: fix e.theme.getCorrectFontSize is not a function

This commit is contained in:
Alexey Safronov 2024-04-22 13:02:40 +04:00
parent d2733829e5
commit 6778cf9df1

View File

@ -21,7 +21,7 @@ export const EmptyViewHeader = styled.div`
justify-content: center;
.ev-header {
font-size: ${(props) => props.theme.getCorrectFontSize("16px")};
font-size: 16px;
color: ${(props) => props.theme.emptyContent.header.color};
text-align: center;
margin-bottom: 8px;
@ -59,7 +59,7 @@ export const EmptyViewItemWrapper = styled.div`
}
.ev-item-header {
font-size: ${(props) => props.theme.getCorrectFontSize("13px")};
font-size: 13px;
color: ${(props) => props.theme.emptyContent.header.color};
}