@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
28 lines (26 loc) • 981 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
:host {
display: flex;
align-items: center;
gap: ${({ spacing }) => spacing[1]};
padding: ${({ spacing }) => spacing[2]} ${({ spacing }) => spacing[3]}
${({ spacing }) => spacing[2]} ${({ spacing }) => spacing[2]};
border-radius: ${({ borderRadius }) => borderRadius[20]};
background-color: ${({ tokens }) => tokens.theme.foregroundPrimary};
box-shadow:
0px 0px 8px 0px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px ${({ tokens }) => tokens.theme.borderPrimary};
max-width: 320px;
}
wui-icon-box {
border-radius: ${({ borderRadius }) => borderRadius.round} !important;
overflow: hidden;
}
wui-loading-spinner {
padding: ${({ spacing }) => spacing[1]};
background-color: ${({ tokens }) => tokens.core.foregroundAccent010};
border-radius: ${({ borderRadius }) => borderRadius.round} !important;
}
`;
//# sourceMappingURL=styles.js.map