PromucFlow_constructor/app/client/src/components/editorComponents/PaneWrapper.tsx
ram-primathon 3b0fb539d5
Property Pane re design (#3057)
Co-authored-by: devrk96 <rohit.kumawat@primathon.in>
Co-authored-by: hetunandu <hetu@appsmith.com>
Co-authored-by: Hetu Nandu <hetunandu@gmail.com>
Co-authored-by: Vicky Bansal <67091118+vicky-primathon@users.noreply.github.com>
Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com>
2021-03-15 17:47:56 +05:30

11 lines
383 B
TypeScript

import styled from "styled-components";
export default styled.div`
background-color: ${(props) => props.theme.colors.propertyPane.bg};
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);
padding: 24px 16px;
color: ${(props) => props.theme.colors.textOnDarkBG};
text-transform: capitalize;
`;