refactor: remove colorset tip

This commit is contained in:
Tristan 2019-09-13 08:38:43 +08:00
parent 724ef9f032
commit 8083b4444e

View File

@ -31,16 +31,6 @@ const Wrapper = styled.div`
margin-right: 0.2rem;
}
.tip {
position: absolute;
right: -1.4rem;
top: 116%;
padding: 0.3rem 0.5rem;
border-radius: 0.3rem;
font-size: 0.8rem;
color: #fff;
background: rgba(0, 0, 0, 0.49);
}
.btn {
cursor: pointer;
position: absolute;
@ -105,7 +95,6 @@ const ColorSet = ({ currSetName, setCurrSet, sets }) => {
<button onClick={handleSetHover} className="btn">
</button>
<span className="tip">色系</span>
</Wrapper>
);
};