File size: 320 Bytes
84c1942 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import styled, { css } from 'styled-components';
export const Stats = styled.div<{ vertical: boolean }>`
display: flex;
${props =>
props.vertical
? css`
flex-direction: column;
`
: css`
flex-direction: row;
align-items: center;
`};
height: 100%;
`;
|