@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
42 lines (37 loc) • 967 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
wui-image {
width: 24px;
height: 24px;
border-radius: ${({ borderRadius }) => borderRadius[2]};
}
wui-image,
.icon-box {
width: 32px;
height: 32px;
border-radius: ${({ borderRadius }) => borderRadius[2]};
}
wui-icon:not(.custom-icon, .icon-badge) {
cursor: pointer;
}
.icon-box {
position: relative;
border-radius: ${({ borderRadius }) => borderRadius[2]};
background-color: ${({ tokens }) => tokens.theme.foregroundSecondary};
}
.icon-badge {
position: absolute;
top: 18px;
left: 23px;
z-index: 3;
background-color: ${({ tokens }) => tokens.theme.foregroundPrimary};
border: 2px solid ${({ tokens }) => tokens.theme.backgroundPrimary};
border-radius: 50%;
padding: ${({ spacing }) => spacing['01']};
}
.icon-badge {
width: 8px;
height: 8px;
}
`;
//# sourceMappingURL=styles.js.map