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

20 lines
364 B
JavaScript
Raw Normal View History

2021-11-04 19:30:49 +08:00
import styled from 'styled-components';
import {
colorGrayLighter,
colorWhite,
} from '/imports/ui/stylesheets/styled-components/palette';
2021-11-04 19:30:49 +08:00
const DndTextArea = styled.textarea`
${({ active }) => active && `
background: ${colorGrayLighter};
2021-11-04 19:30:49 +08:00
`}
${({ active }) => !active && `
background: ${colorWhite};
2021-11-04 19:30:49 +08:00
`}
`;
export default {
DndTextArea,
};