### What problem does this PR solve? feat: add MessageForm #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
.dynamicDeleteButton {
|
|
position: relative;
|
|
top: 4px;
|
|
margin: 0 8px;
|
|
color: #999;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
&:hover {
|
|
color: #777;
|
|
}
|
|
&[disabled] {
|
|
cursor: not-allowed;
|
|
opacity: 0.5;
|
|
}
|
|
}
|