datahub/datahub-web-react/src/app/shared/avatar/SpaceAvatarGroup.tsx

14 lines
335 B
TypeScript

import { Avatar } from 'antd';
import styled from 'styled-components';
export const SpacedAvatarGroup = styled(Avatar.Group)`
&&& > .ant-avatar-circle.ant-avatar {
margin-right: 10px;
height: 24px;
width: 24px;
}
&&& > .ant-avatar-circle.ant-avatar .ant-avatar-string {
top: -20%;
}
`;