@reown/appkit-scaffold-ui
Version:
The full stack toolkit to build onchain app UX.
40 lines (34 loc) • 707 B
JavaScript
import { css } from 'lit';
export default css `
wui-grid,
wui-loading-spinner,
wui-flex {
height: 360px;
}
wui-grid {
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;
height: auto;
}
wui-grid[data-scroll='false'] {
overflow: hidden;
}
wui-grid::-webkit-scrollbar {
display: none;
}
wui-loading-spinner {
justify-content: center;
align-items: center;
}
@media (max-width: 350px) {
wui-grid {
grid-template-columns: repeat(2, 1fr);
}
}
`;
//# sourceMappingURL=styles.js.map