@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
32 lines (28 loc) • 665 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
:host {
width: 100%;
}
button {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: ${({ spacing }) => spacing[4]};
padding: ${({ spacing }) => spacing[4]};
background-color: transparent;
border-radius: ${({ borderRadius }) => borderRadius[4]};
}
wui-text {
max-width: 174px;
}
.tag-container {
width: fit-content;
}
@media (hover: hover) {
button:hover:enabled {
background-color: ${({ tokens }) => tokens.theme.foregroundPrimary};
}
}
`;
//# sourceMappingURL=styles.js.map