DEV: Fix scss deprecation warning (#32325)

This commit is contained in:
Penar Musaraj
2025-04-16 11:34:30 -04:00
committed by GitHub
parent cb64b37070
commit fec1ba0d73
@@ -128,17 +128,18 @@
padding: 0.25em;
}
.d-multi-select__skeleton-checkbox {
@keyframes pulse {
50% {
opacity: 0.5;
}
@keyframes dmultiselect-pulse {
50% {
opacity: 0.5;
}
}
.d-multi-select__skeleton-checkbox {
border: 1px solid var(--primary-low);
border-radius: var(--d-border-radius);
width: 14px;
height: 14px;
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
animation: dmultiselect-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
box-sizing: border-box;
}
@@ -146,6 +147,6 @@
background: var(--primary-low);
width: 100%;
height: 24px;
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
animation: dmultiselect-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
border-radius: var(--d-border-radius);
}