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

20 lines
364 B
JavaScript

import styled from 'styled-components';
import {
colorGrayLighter,
colorWhite,
} from '/imports/ui/stylesheets/styled-components/palette';
const DndTextArea = styled.textarea`
${({ active }) => active && `
background: ${colorGrayLighter};
`}
${({ active }) => !active && `
background: ${colorWhite};
`}
`;
export default {
DndTextArea,
};