mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
import styled from 'styled-components';
|
|
|
|
export const FlexLine = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 15px;
|
|
`;
|
|
|
|
export const FlexWrap = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
`;
|