@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
47 lines (42 loc) • 1.11 kB
JavaScript
import { css } from '@reown/appkit-ui';
export default css `
:host {
width: 100%;
height: 100px;
border-radius: ${({ borderRadius }) => borderRadius['5']};
border: 1px solid ${({ tokens }) => tokens.theme.foregroundPrimary};
background-color: ${({ tokens }) => tokens.theme.foregroundPrimary};
transition: background-color ${({ durations }) => durations['lg']}
${({ easings }) => easings['ease-out-power-1']};
will-change: background-color;
transition: all ${({ easings }) => easings['ease-out-power-1']}
${({ durations }) => durations['lg']};
}
:host(:hover) {
background-color: ${({ tokens }) => tokens.theme.foregroundSecondary};
}
wui-flex {
width: 100%;
height: fit-content;
}
wui-button {
width: 100%;
display: flex;
justify-content: flex-end;
}
wui-input-amount {
mask-image: linear-gradient(
270deg,
transparent 0px,
transparent 8px,
black 24px,
black 25px,
black 32px,
black 100%
);
}
.totalValue {
width: 100%;
}
`;
//# sourceMappingURL=styles.js.map