at main 328 B view raw
1/** 2 * ListItem Styles 3 * 4 * Uses the global typography system with fluid type scaling. Works with both ordered and unordered lists. 5 */ 6 7export const listItemBase = 'font-dm-sans pl-4 pb-2'; 8 9export const listItemSizes = { 10 sm: 'paragraph-sm', 11 base: 'paragraph-base', 12 md: 'paragraph-md', 13 lg: 'paragraph-lg', 14} as const;