CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
23 lines
687 B
TypeScript
23 lines
687 B
TypeScript
/**
|
|
* @import {Element, ElementContent, Properties} from 'hast'
|
|
* @import {Parents, TableRow} from 'mdast'
|
|
* @import {State} from '../state.js'
|
|
*/
|
|
/**
|
|
* Turn an mdast `tableRow` node into hast.
|
|
*
|
|
* @param {State} state
|
|
* Info passed around.
|
|
* @param {TableRow} node
|
|
* mdast node.
|
|
* @param {Parents | undefined} parent
|
|
* Parent of `node`.
|
|
* @returns {Element}
|
|
* hast node.
|
|
*/
|
|
export function tableRow(state: State, node: TableRow, parent: Parents | undefined): Element;
|
|
import type { State } from '../state.js';
|
|
import type { TableRow } from 'mdast';
|
|
import type { Parents } from 'mdast';
|
|
import type { Element } from 'hast';
|
|
//# sourceMappingURL=table-row.d.ts.map
|