27 lines
466 B
JavaScript
Raw Normal View History

2019-10-24 15:28:47 +02:00
import styled from 'styled-components';
const NameWrapper = styled.div`
position: relative;
line-height: 30px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer;
${({ isOverEditBlock, isOverRemove, isSelected }) => {
if (isOverRemove) {
return `
2019-11-29 20:16:33 +01:00
color: #f64d0a;
2019-10-24 15:28:47 +02:00
`;
}
if (isSelected || isOverEditBlock) {
return `
2019-11-29 20:16:33 +01:00
color: #007eff;
2019-10-24 15:28:47 +02:00
`;
}
}}
`;
export default NameWrapper;