@automattic/wpcom-checkout
Version:
Functions and components used by WordPress.com checkout.
21 lines (16 loc) • 322 B
text/typescript
import styled from '@emotion/styled';
export const SummaryDetails = styled.ul`
margin: 8px 0 0 0;
padding: 0;
:first-of-type {
margin-top: 0;
}
`;
export const SummaryLine = styled.li`
margin: 0;
padding: 0;
list-style: none;
`;
export const SummarySpacerLine = styled( SummaryLine )`
margin-bottom: 8px;
`;