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 ✅
27 lines
597 B
TypeScript
27 lines
597 B
TypeScript
/**
|
|
* Remove the `position` field from a tree.
|
|
*
|
|
* @param {Node} tree
|
|
* Tree to clean.
|
|
* @param {Options | null | undefined} [options={force: false}]
|
|
* Configuration (default: `{force: false}`).
|
|
* @returns {undefined}
|
|
* Nothing.
|
|
*/
|
|
export function removePosition(
|
|
tree: Node,
|
|
options?: Options | null | undefined
|
|
): undefined
|
|
export type Node = import('unist').Node
|
|
/**
|
|
* Configuration.
|
|
*/
|
|
export type Options = {
|
|
/**
|
|
* Whether to use `delete` to remove `position` fields.
|
|
*
|
|
* The default is to set them to `undefined`.
|
|
*/
|
|
force?: boolean | null | undefined
|
|
}
|