@pega/custom-dx-components
Version:
Utility for building custom UI components
24 lines (20 loc) • 464 B
text/typescript
// individual style, comment out above, and uncomment here and add styles
import styled, { css } from 'styled-components';
export default styled.div(() => {
return css`
margin: 0px 0;
`;
});
export const StyledDetailsGridContainer = styled.div(() => {
return css`
margin-line-start: 1;
`;
});
export const StyledHighlightedFieldsHrLine = styled.hr(() => {
return css`
line: {
margin: '0.75rem 0';
opacity: '50%'
}
`;
});