This commit is contained in:
2025-07-14 15:30:16 +00:00
parent c534d1d084
commit 1caeae9ec9
4 changed files with 59 additions and 27 deletions

View File

@@ -128,10 +128,13 @@ export class SioCombox extends DeesElement {
overflow: hidden;
font-family: ${unsafeCSS(fontFamilies.sans)};
position: relative;
animation: scaleIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
transform-origin: bottom right;
}
:host(.animate-in) {
animation: scaleIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes scaleIn {
from {
opacity: 0;
@@ -152,6 +155,7 @@ export class SioCombox extends DeesElement {
background: linear-gradient(145deg, ${bdTheme('border')}, transparent 50%);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: exclude;
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
opacity: 0.5;
pointer-events: none;