paperless-ngx/src-ui/src/app/components/common/clearable-badge/clearable-badge.component.scss
2022-10-29 15:29:50 -07:00

29 lines
367 B
SCSS

.badge {
min-width: 20px;
min-height: 20px;
}
.x {
display: none;
}
.number {
min-width: 1em;
min-height: 1em;
display: inline-block;
}
button:hover {
.check,
.number {
opacity: 0 !important;
}
.x {
display: inline-block;
position: absolute;
top: 5px;
left: calc(50% - 4px);
}
}