@sinchsmb/ui-kit
Version:
UI kit for SinchSMB frontend
15 lines (11 loc) • 381 B
text/typescript
import styled from 'styled-components/macro';
import { Scrollable } from '../../../../components/Scrollable/Scrollable';
import { color } from '../../../../theme';
export const TunedBodyScroll = styled(Scrollable)`
background-color: ${color('sys/color/background')};
box-sizing: border-box;
height: 100%;
`;
export const StyledBodyContent = styled.div`
margin: 32px;
`;