@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
17 lines • 584 B
JavaScript
import { Box, styled } from '@mui/material';
export const chainExpansionWidth = '256px';
export const SelectChainExpansionContainer = styled(Box, {
shouldForwardProp: (prop) => prop !== 'expansionHeight',
})(({ theme, expansionHeight }) => ({
...theme.container,
position: 'relative',
boxSizing: 'content-box',
width: chainExpansionWidth,
background: theme.vars.palette.background.default,
overflow: 'hidden',
flex: 1,
zIndex: 0,
height: expansionHeight,
...theme.chainSidebarContainer,
}));
//# sourceMappingURL=ChainsExpanded.style.js.map