@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
53 lines (47 loc) • 1.27 kB
JavaScript
import { css } from '@reown/appkit-ui';
export default css `
wui-shimmer {
width: 100%;
aspect-ratio: 1 / 1;
border-radius: ${({ borderRadius }) => borderRadius[4]};
}
wui-qr-code {
opacity: 0;
animation-duration: ${({ durations }) => durations['xl']};
animation-timing-function: ${({ easings }) => easings['ease-out-power-2']};
animation-name: fade-in;
animation-fill-mode: forwards;
}
wui-logo {
width: 80px;
height: 80px;
border-radius: ${({ borderRadius }) => borderRadius['8']};
}
wui-flex:first-child:not(:only-child) {
position: relative;
}
wui-loading-thumbnail {
position: absolute;
}
wui-icon-box {
position: absolute;
right: calc(${({ spacing }) => spacing['1']} * -1);
bottom: calc(${({ spacing }) => spacing['1']} * -1);
opacity: 0;
transform: scale(0.5);
transition:
opacity ${({ durations }) => durations['lg']} ${({ easings }) => easings['ease-out-power-2']},
transform ${({ durations }) => durations['lg']}
${({ easings }) => easings['ease-out-power-2']};
will-change: opacity, transform;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
`;
//# sourceMappingURL=styles.js.map