UNPKG

@reown/appkit-scaffold-ui

Version:

The full stack toolkit to build onchain app UX.

70 lines (60 loc) 1.82 kB
import { css } from '@reown/appkit-ui'; export default css ` :host { --connect-scroll--top-opacity: 0; --connect-scroll--bottom-opacity: 0; } .balance-amount { flex: 1; } .wallet-list { scrollbar-width: none; overflow-y: scroll; overflow-x: hidden; transition: opacity ${({ easings }) => easings['ease-out-power-1']} ${({ durations }) => durations['md']}; will-change: opacity; mask-image: linear-gradient( to bottom, rgba(0, 0, 0, calc(1 - var(--connect-scroll--top-opacity))) 0px, rgba(200, 200, 200, calc(1 - var(--connect-scroll--top-opacity))) 1px, black 40px, black calc(100% - 40px), rgba(155, 155, 155, calc(1 - var(--connect-scroll--bottom-opacity))) calc(100% - 1px), rgba(0, 0, 0, calc(1 - var(--connect-scroll--bottom-opacity))) 100% ); } .active-wallets { background-color: ${({ tokens }) => tokens.theme.foregroundPrimary}; border-radius: ${({ borderRadius }) => borderRadius['4']}; } .active-wallets-box { height: 330px; } .empty-wallet-list-box { height: 400px; } .empty-box { width: 100%; padding: ${({ spacing }) => spacing['4']}; background-color: ${({ tokens }) => tokens.theme.foregroundPrimary}; border-radius: ${({ borderRadius }) => borderRadius['4']}; } wui-separator { margin: ${({ spacing }) => spacing['2']} 0 ${({ spacing }) => spacing['2']} 0; } .active-connection { padding: ${({ spacing }) => spacing['2']}; } .recent-connection { padding: ${({ spacing }) => spacing['2']} 0 ${({ spacing }) => spacing['2']} 0; } @media (max-width: 430px) { .active-wallets-box, .empty-wallet-list-box { height: auto; max-height: clamp(360px, 470px, 80vh); } } `; //# sourceMappingURL=styles.js.map