UNPKG

fumadocs-ui

Version:

The framework for building a documentation website in Next.js

93 lines 2.27 kB
export declare const roundedTable: { table: { borderCollapse: string; borderSpacing: string; background: string; borderRadius: string; border: string; overflow: string; }; th: { textAlign: string; padding: string; 'border-inline-start': string; background: string; }; 'th:first-child': { 'border-inline-start': string; }; 'th:not(tr:last-child *), td:not(tr:last-child *)': { 'border-bottom': string; }; td: { textAlign: string; 'border-inline-start': string; padding: string; }; 'td:first-child': { 'border-inline-start': string; }; 'tfoot th, tfoot td': { borderTopWidth: string; borderTopColor: string; }; 'thead th, thead td': { borderBottomWidth: string; borderBottomColor: string; }; }; export declare const normalTable: { thead: { borderBottomWidth: string; borderBottomColor: string; }; 'thead th': { verticalAlign: string; paddingInlineEnd: string; paddingBottom: string; paddingInlineStart: string; }; 'thead th:first-child': { paddingInlineStart: string; }; 'thead th:last-child': { paddingInlineEnd: string; }; 'tbody td, tfoot td': { paddingTop: string; paddingInlineEnd: string; paddingBottom: string; paddingInlineStart: string; }; 'tbody td:first-child, tfoot td:first-child': { paddingInlineStart: string; }; 'tbody td:last-child, tfoot td:last-child': { paddingInlineEnd: string; }; 'tbody tr': { borderBottomWidth: string; borderBottomColor: string; }; 'tbody tr:last-child': { borderBottomWidth: string; }; 'tbody td': { verticalAlign: string; }; tfoot: { borderTopWidth: string; borderTopColor: string; }; 'tfoot td': { verticalAlign: string; }; 'th, td': { textAlign: string; }; }; export interface Config { css?: Record<string, string | Record<string, string>>[]; } export declare const DEFAULT: Config; //# sourceMappingURL=styles.d.ts.map