mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
29 lines
367 B
SCSS
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);
|
|
}
|
|
}
|