@reown/appkit-ui
Version:
The full stack toolkit to build onchain app UX.
50 lines (41 loc) • 944 B
JavaScript
import { css } from '../../utils/ThemeHelperUtil.js';
export default css `
:host {
width: 100%;
}
:host > wui-flex:first-child {
align-items: center;
column-gap: ${({ spacing }) => spacing[2]};
padding: ${({ spacing }) => spacing[1]} ${({ spacing }) => spacing[2]};
width: 100%;
}
:host > wui-flex:first-child wui-text:nth-child(1) {
text-transform: capitalize;
}
wui-transaction-visual {
width: 40px;
height: 40px;
}
wui-flex {
flex: 1;
}
:host wui-flex wui-flex {
overflow: hidden;
}
:host .description-container wui-text span {
word-break: break-all;
}
:host .description-container wui-text {
overflow: hidden;
}
:host .description-separator-icon {
margin: 0px 6px;
}
:host wui-text > span {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
`;
//# sourceMappingURL=styles.js.map