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 ✅
16 lines
496 B
TypeScript
16 lines
496 B
TypeScript
/**
|
|
* Turn an mdast `text` node into hast.
|
|
*
|
|
* @param {State} state
|
|
* Info passed around.
|
|
* @param {MdastText} node
|
|
* mdast node.
|
|
* @returns {HastElement | HastText}
|
|
* hast node.
|
|
*/
|
|
export function text(state: State, node: MdastText): HastElement | HastText;
|
|
import type { State } from '../state.js';
|
|
import type { Text as MdastText } from 'mdast';
|
|
import type { Element as HastElement } from 'hast';
|
|
import type { Text as HastText } from 'hast';
|
|
//# sourceMappingURL=text.d.ts.map
|