@reown/appkit-ui
Version:
#### 🔗 [Website](https://reown.com/appkit)
44 lines (40 loc) • 1 kB
JavaScript
import { css } from 'lit';
export default css `
button {
height: auto;
position: relative;
flex-direction: column;
gap: var(--wui-spacing-s);
padding: 17px 18px 17px var(--wui-spacing-m);
width: 100%;
background-color: var(--wui-color-gray-glass-002);
border-radius: var(--wui-border-radius-xs);
color: var(--wui-color-fg-250);
}
.overflowedContent {
width: 100%;
overflow: hidden;
}
.overflowedContent[data-active='false']:after {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to top, var(--wui-color-bg-150), transparent);
border-bottom-left-radius: var(--wui-border-radius-xs);
border-bottom-right-radius: var(--wui-border-radius-xs);
}
.heightContent {
max-height: 100px;
}
pre {
text-align: left;
white-space: pre-wrap;
height: auto;
overflow-x: auto;
overflow-wrap: anywhere;
}
`;
//# sourceMappingURL=styles.js.map