Files
dydx-v4-web/src/components/ContentSection.tsx
T
aleka cd30c9c7d9 add collapsible table (#231)
* add collapsible table

* update to add a TR inside table instead
2024-01-24 12:26:32 -05:00

16 lines
427 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}
gap: var(--border-width);
`;