20 lines
289 B
CSS
20 lines
289 B
CSS
.inputWrap {
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
padding-left: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.deleteBtn {
|
|
display: none;
|
|
display: flex;
|
|
}
|
|
|
|
.inputWrap:hover {
|
|
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
|
|
}
|
|
|
|
.inputWrap:hover .deleteBtn {
|
|
display: flex;
|
|
} |