21 lines
386 B
JavaScript
21 lines
386 B
JavaScript
import styled from 'styled-components';
|
|
import { jumboPaddingY } from '/imports/ui/stylesheets/styled-components/general';
|
|
|
|
const Header = styled.header`
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-bottom: ${jumboPaddingY};
|
|
`;
|
|
|
|
const RightWrapper = styled.div`
|
|
& > div {
|
|
display: flex;
|
|
}
|
|
`;
|
|
|
|
export default {
|
|
Header,
|
|
RightWrapper,
|
|
};
|