Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 125x 295x 17x 38x | import { cssClass } from '../styled';
import { space, theme } from '../utils';
export const List = styleProps => cssClass`
list-style: unset;
list-style-type: none;
& & {
margin-left: ${space(4)(styleProps)}rem;
}
& li {
&:not(:last-child) {
margin-bottom: ${space(1)(styleProps)}rem;
}
}
& {
${styleProps.isOrdered && getOrderedProperties(styleProps)};
}
& {
${styleProps.orientation === 'horizontal' && getHorizontalProperties(styleProps)};
}
& {
${theme(styleProps.themeKey, 'css.root')(styleProps)};
}
`;
export const ListItem = styleProps => cssClass`
& .fp-Icon {
vertical-align: -0.125em;
}
& {
${theme(styleProps.themeKey, 'css.root')(styleProps)};
}
`;
export const getOrderedProperties = styleProps => cssClass`
list-style-type: decimal;
& & {
list-style-type: lower-alpha;
}
& & & {
list-style-type: lower-roman;
}
& {
${theme(styleProps.themeKey, 'css.ordered')(styleProps)};
}
`;
export const getHorizontalProperties = styleProps => cssClass`
&&& li {
display: inline-block;
margin-bottom: unset;
&:not(:last-child) {
margin-right: 1rem;
}
}
& {
${theme(styleProps.themeKey, 'css.horizontal')(styleProps)};
}
`;
|