@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
29 lines (26 loc) • 618 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
:host {
display: block;
width: 100%;
}
button {
width: 100%;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
background: ${({ tokens }) => tokens.theme.foregroundPrimary};
border-radius: ${({ borderRadius }) => borderRadius[4]};
}
@media (hover: hover) {
button:hover:enabled {
background: ${({ tokens }) => tokens.theme.foregroundSecondary};
}
}
button:disabled {
cursor: not-allowed;
opacity: 0.5;
}
`;
//# sourceMappingURL=styles.js.map