Files
dydx-v4-web/src/components/ContentSection.tsx
T
2023-09-08 13:52:13 -07:00

17 lines
471 B
TypeScript

import styled from 'styled-components';
import { layoutMixins } from '@/styles/layoutMixins';
export const DetachedSection = styled.section`
${layoutMixins.contentSectionDetached}
`;
export const DetachedScrollableSection = styled.section`
${layoutMixins.contentSectionDetachedScrollable}
`;
export const AttachedExpandingSection = styled.section`
${layoutMixins.contentSectionAttached}
${layoutMixins.expandingColumnWithHeader}
gap: var(--border-width);
`;