Shared:EmptyView Refactoring

This commit is contained in:
Akmal Isomadinov 2024-08-16 14:23:34 +05:00
parent ac1b9f4e05
commit cde5f13c49
3 changed files with 6 additions and 2 deletions

View File

@ -68,9 +68,10 @@ export const EmptyViewBody = styled.div`
max-width: fit-content;
text-decoration: none;
color: #4781d1;
color: ${(props) => props.theme.emptyView.linkColor};
svg {
color: #4781d1;
color: inherit;
g {
fill: currentColor;
}

View File

@ -2372,6 +2372,8 @@ export const getBaseTheme = () => {
},
emptyView: {
linkColor: lightBlueMain,
items: {
hoverColor: grayLight,
pressColor: lightGraySelected,

View File

@ -2348,6 +2348,7 @@ const Dark: TTheme = {
},
emptyView: {
linkColor: lightBlueMain,
items: {
hoverColor: darkGrayLight,
pressColor: grayDarkStrong,