bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/breakout-join-confirmation/styles.js
2021-10-26 13:37:23 +00:00

21 lines
424 B
JavaScript

import styled from 'styled-components';
import { colorWhite, colorGrayLighter } from '/imports/ui/stylesheets/styled-components/palette';
const SelectParent = styled.div`
display: flex;
flex-direction: column;
align-items: center;
`;
const Select = styled.select`
background-color: ${colorWhite};
width: 50%;
margin: 1rem;
border-color: ${colorGrayLighter};
`;
export default {
SelectParent,
Select,
};