UNPKG

@reown/appkit-scaffold-ui

Version:

The full stack toolkit to build onchain app UX.

53 lines (46 loc) 1.14 kB
import { css } from '@reown/appkit-ui'; export default css ` wui-grid { max-height: clamp(360px, 400px, 80vh); overflow: scroll; scrollbar-width: none; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, 104px); } :host([data-mobile-fullscreen='true']) wui-grid { max-height: none; } @media (max-width: 350px) { wui-grid { grid-template-columns: repeat(2, 1fr); } } wui-grid[data-scroll='false'] { overflow: hidden; } wui-grid::-webkit-scrollbar { display: none; } w3m-all-wallets-list-item { opacity: 0; animation-duration: ${({ durations }) => durations['xl']}; animation-timing-function: ${({ easings }) => easings['ease-inout-power-2']}; animation-name: fade-in; animation-fill-mode: forwards; } @keyframes fade-in { from { opacity: 0; } to { opacity: 1; } } wui-loading-spinner { padding-top: ${({ spacing }) => spacing['4']}; padding-bottom: ${({ spacing }) => spacing['4']}; justify-content: center; grid-column: 1 / span 4; } `; //# sourceMappingURL=styles.js.map