updated js-sdk and replaced missing handlers

This commit is contained in:
Gani Georgiev
2026-05-24 16:09:11 +03:00
parent 7984e586a8
commit 5bea84b94b
40 changed files with 217 additions and 229 deletions
+11 -14
View File
@@ -11,8 +11,9 @@
line-height: 1;
font-size: var(--fontSize);
color: var(--surfaceTxtDisabledColor);
background: var(--surfaceAlt1Color);
background: var(--surfaceAlt2Color);
border-radius: var(--borderRadius);
transition: background var(--animationSpeed);
&:empty {
&::before {
content: "\f452";
@@ -23,6 +24,15 @@
width: 100%;
height: auto;
}
.handle:hover &,
.handle:focus-visible & {
background: var(--surfaceAlt3Color);
}
.handle.active &,
.handle:active & {
transition-duration: var(--activeAnimationSpeed);
background: var(--surfaceAlt4Color);
}
}
.provider-card {
@@ -66,22 +76,9 @@
user-select: none;
text-decoration: none;
transition: background var(--animationSpeed);
.provider-logo {
transition: background var(--animationSpeed);
}
&:hover,
&:focus-visible {
background: var(--surfaceAlt1Color);
.provider-logo {
background: var(--surfaceAlt2Color);
}
}
&.active,
&:active {
.provider-logo {
transition-duration: var(--activeAnimationSpeed);
background: var(--surfaceAlt3Color);
}
}
}