bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/poll/dragAndDrop/styles.js

33 lines
608 B
JavaScript
Raw Normal View History

2021-11-04 19:30:49 +08:00
import styled from 'styled-components';
2022-02-15 04:20:50 +08:00
import Button from '/imports/ui/components/common/button/component';
2021-11-04 19:30:49 +08:00
import { fontSizeSmall } from '/imports/ui/stylesheets/styled-components/typography';
const DndContainer = styled.div`
height: 200px;
`;
const DndTextArea = styled.textarea`
width: 100%;
height: 100%;
resize: none;
font-size: ${fontSizeSmall};
${({ active }) => active && `
background: grey;
`}
${({ active }) => !active && `
background: white;
`}
`;
const DndButton = styled(Button)`
width: 100%;
`;
export default {
DndContainer,
DndTextArea,
DndButton,
};