@reown/appkit-ui
Version:
#### 🔗 [Website](https://reown.com/appkit)
48 lines (45 loc) • 1.01 kB
JavaScript
import { css } from 'lit';
export default css `
:host {
position: relative;
border-radius: var(--wui-border-radius-xxs);
width: 40px;
height: 40px;
overflow: hidden;
background: var(--wui-color-gray-glass-002);
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: var(--wui-spacing-4xs);
padding: 3.75px !important;
}
:host::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-radius: inherit;
border: 1px solid var(--wui-color-gray-glass-010);
pointer-events: none;
}
:host > wui-wallet-image {
width: 14px;
height: 14px;
border-radius: var(--wui-border-radius-5xs);
}
:host > wui-flex {
padding: 2px;
position: fixed;
overflow: hidden;
left: 34px;
bottom: 8px;
background: var(--dark-background-150, #1e1f1f);
border-radius: 50%;
z-index: 2;
display: flex;
}
`;
//# sourceMappingURL=styles.js.map