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