UNPKG

@reown/appkit-ui

Version:

The full stack toolkit to build onchain app UX.

32 lines (28 loc) 654 B
import { css } from '../../utils/ThemeHelperUtil.js'; export default css ` :host { width: 100%; } button { display: flex; align-items: center; justify-content: space-between; padding: ${({ spacing }) => spacing[3]}; width: 100%; background-color: transparent; border-radius: ${({ borderRadius }) => borderRadius[4]}; } wui-text { text-transform: capitalize; } @media (hover: hover) { button:hover:enabled { background-color: ${({ tokens }) => tokens.theme.foregroundPrimary}; } } button:disabled { opacity: 0.5; cursor: not-allowed; } `; //# sourceMappingURL=styles.js.map