UNPKG

@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 (16 loc) 497 B
import { Box } from '@mui/material'; import { styled } from '@mui/material/styles'; import { Card } from '../../components/Card'; export const ChainCard = styled(Card)({ display: 'grid', placeItems: 'center', minWidth: 52, height: 56, }); export const ChainContainer = styled(Box)(({ theme }) => ({ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(52px, 1fr))', gridAutoRows: '56px', justifyContent: 'space-between', gap: theme.spacing(1.5), }));