@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
26 lines (24 loc) • 486 B
JavaScript
import { css } from 'lit';
export default css `
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
wui-shimmer {
width: 100%;
aspect-ratio: 1 / 1;
border-radius: clamp(0px, var(--wui-border-radius-l), 40px) !important;
}
wui-qr-code {
opacity: 0;
animation-duration: 200ms;
animation-timing-function: ease;
animation-name: fadein;
animation-fill-mode: forwards;
}
`;
//# sourceMappingURL=styles.js.map