Add "clearable" badge

This commit is contained in:
Michael Shamoon
2022-10-29 15:03:27 -07:00
parent 28f7b0dc13
commit 0993fc07a3
8 changed files with 83 additions and 13 deletions

View File

@@ -0,0 +1,25 @@
.badge {
width: 20px;
height: 20px;
}
.x {
display: none;
}
.number {
width: 1em;
height: 1em;
display: inline-block;
}
button:hover {
.check,
.number {
display: none;
}
.x {
display: inline-block;
}
}