@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
55 lines (50 loc) • 1.1 kB
JavaScript
import { css } from '@reown/appkit-ui';
export default css `
:host {
display: block;
}
div.container {
position: absolute;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
height: auto;
display: block;
}
div.container[status='hide'] {
animation: fade-out;
animation-duration: var(--apkt-duration-dynamic);
animation-timing-function: ${({ easings }) => easings['ease-out-power-2']};
animation-fill-mode: both;
animation-delay: 0s;
}
div.container[status='show'] {
animation: fade-in;
animation-duration: var(--apkt-duration-dynamic);
animation-timing-function: ${({ easings }) => easings['ease-out-power-2']};
animation-fill-mode: both;
animation-delay: var(--apkt-duration-dynamic);
}
@keyframes fade-in {
from {
opacity: 0;
filter: blur(6px);
}
to {
opacity: 1;
filter: blur(0px);
}
}
@keyframes fade-out {
from {
opacity: 1;
filter: blur(0px);
}
to {
opacity: 0;
filter: blur(6px);
}
}
`;
//# sourceMappingURL=styles.js.map