bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/common/control-header/styles.js

21 lines
386 B
JavaScript
Raw Normal View History

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,
};