mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 20:09:11 +00:00
19 lines
345 B
TypeScript
19 lines
345 B
TypeScript
import { onSmallScreen } from '@roleypoly/design-system/atoms/breakpoints';
|
|
import styled from 'styled-components';
|
|
|
|
export const Buttons = styled.div`
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
`;
|
|
|
|
export const Left = styled.div`
|
|
flex: 0;
|
|
${onSmallScreen`
|
|
flex: 1 1 100%;
|
|
order: 2;
|
|
`}
|
|
`;
|
|
|
|
export const Right = styled.div`
|
|
flex: 1;
|
|
`;
|