react-paint-test
Version:
a simple paint tool
26 lines (24 loc) • 551 B
text/less
.otherOperator {
width: 80px;
position: relative;
.operator-content {
display: flex;
justify-content: space-between;
.operator-item {
cursor: pointer;
border: 1px solid transparent;
width: 24px;
height: 24px;
&:hover {
background-color: #d5e3f3;
border: 1px solid #64a5e7;
}
}
}
.title {
width: 100%;
text-align: center;
position: absolute;
bottom: 0px;
}
}