UNPKG

@reown/appkit-ui

Version:

The full stack toolkit to build onchain app UX.

40 lines (36 loc) 885 B
import { css } from '../../utils/ThemeHelperUtil.js'; export default css ` :host { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 104px; width: 104px; row-gap: ${({ spacing }) => spacing[2]}; background-color: ${({ tokens }) => tokens.theme.foregroundPrimary}; border-radius: ${({ borderRadius }) => borderRadius[5]}; position: relative; } wui-shimmer[data-type='network'] { border: none; -webkit-clip-path: var(--apkt-path-network); clip-path: var(--apkt-path-network); } svg { position: absolute; width: 48px; height: 54px; z-index: 1; } svg > path { stroke: ${({ tokens }) => tokens.theme.foregroundSecondary}; stroke-width: 1px; } @media (max-width: 350px) { :host { width: 100%; } } `; //# sourceMappingURL=styles.js.map