@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
27 lines (25 loc) • 838 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
:host {
height: auto;
}
:host > wui-flex {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
column-gap: ${({ spacing }) => spacing['2']};
padding: ${({ spacing }) => spacing['2']} ${({ spacing }) => spacing['3']};
background-color: ${({ tokens }) => tokens.theme.foregroundPrimary};
border-radius: ${({ borderRadius }) => borderRadius['4']};
box-shadow: inset 0 0 0 1px ${({ tokens }) => tokens.theme.foregroundPrimary};
transition: background-color ${({ durations }) => durations['lg']}
${({ easings }) => easings['ease-out-power-2']};
will-change: background-color;
cursor: pointer;
}
wui-switch {
pointer-events: none;
}
`;
//# sourceMappingURL=styles.js.map