@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
22 lines (20 loc) • 500 B
JavaScript
import { css } from '@reown/appkit-ui';
export default css `
wui-flex {
max-height: clamp(360px, 540px, 80vh);
overflow: scroll;
scrollbar-width: none;
transition: opacity ${({ durations }) => durations['md']}
${({ easings }) => easings['ease-out-power-1']};
will-change: opacity;
}
wui-flex::-webkit-scrollbar {
display: none;
}
wui-flex.disabled {
opacity: 0.3;
pointer-events: none;
user-select: none;
}
`;
//# sourceMappingURL=styles.js.map