Fixed showcased filter not adhered. Improved filter settings UI.

This commit is contained in:
2024-04-03 02:13:41 +02:00
parent 26546bea33
commit 8947288e76
4 changed files with 32 additions and 0 deletions

View File

@@ -71,6 +71,11 @@ defineEmits(['change']);
}
}
.check-container.minus .check::after {
border-left: none;
transform: scaleX(0);
}
.check-cross .check::before {
content: '';
width: 100%;
@@ -93,6 +98,14 @@ defineEmits(['change']);
}
}
.check-container.minus .check-checkbox:checked + .check {
background: var(--error);
&::after {
transform: scaleX(1);
}
}
.check-label {
overflow: hidden;
text-transform: capitalize;