Web: Components: fixed color props passing in row-content

This commit is contained in:
Artem Tarasov 2020-09-22 15:14:44 +03:00
parent 9632515ea1
commit 0dbbbc3ab6

View File

@ -132,7 +132,7 @@ ${props => !props.disableSideInfo
const TabletSideInfo = styled.div`
display: none;
${props => props.color ? `color: ${props.color};` : null}
${props => props.widthProp && (props.widthProp < size.tablet) || props.isMobile
? `${sideInfoTabletStyle}`
: `
@ -154,7 +154,6 @@ const getSideInfo = content => {
: '';
}
});
return info;
};