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 ✅
29 lines
850 B
JavaScript
29 lines
850 B
JavaScript
'use strict';
|
|
|
|
function emptyScalarPosition(offset, before, pos) {
|
|
if (before) {
|
|
pos ?? (pos = before.length);
|
|
for (let i = pos - 1; i >= 0; --i) {
|
|
let st = before[i];
|
|
switch (st.type) {
|
|
case 'space':
|
|
case 'comment':
|
|
case 'newline':
|
|
offset -= st.source.length;
|
|
continue;
|
|
}
|
|
// Technically, an empty scalar is immediately after the last non-empty
|
|
// node, but it's more useful to place it after any whitespace.
|
|
st = before[++i];
|
|
while (st?.type === 'space') {
|
|
offset += st.source.length;
|
|
st = before[++i];
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return offset;
|
|
}
|
|
|
|
exports.emptyScalarPosition = emptyScalarPosition;
|