PromucFlow_constructor/app/client/src/components/editorComponents/PaneWrapper.tsx
albinAppsmith 31cdfe0fe5
feat: Appsmith design system changes (#8125)
Introducing a much improved design system with new components in the Appsmith Design System.
2021-10-04 21:04:37 +05:30

11 lines
372 B
TypeScript

import styled from "styled-components";
import { Colors } from "constants/Colors";
export default styled.div`
background-color: ${Colors.GREY_1};
border-radius: ${(props) => props.theme.radii[0]}px;
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2), 0px 2px 10px rgba(0, 0, 0, 0.1);
color: ${(props) => props.theme.colors.textOnDarkBG};
text-transform: capitalize;
`;