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 ✅
34 lines
576 B
JavaScript
34 lines
576 B
JavaScript
'use strict';
|
|
|
|
var isObject = require('is-extendable');
|
|
|
|
module.exports = function extend(o/*, objects*/) {
|
|
if (!isObject(o)) { o = {}; }
|
|
|
|
var len = arguments.length;
|
|
for (var i = 1; i < len; i++) {
|
|
var obj = arguments[i];
|
|
|
|
if (isObject(obj)) {
|
|
assign(o, obj);
|
|
}
|
|
}
|
|
return o;
|
|
};
|
|
|
|
function assign(a, b) {
|
|
for (var key in b) {
|
|
if (hasOwn(b, key)) {
|
|
a[key] = b[key];
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns true if the given `key` is an own property of `obj`.
|
|
*/
|
|
|
|
function hasOwn(obj, key) {
|
|
return Object.prototype.hasOwnProperty.call(obj, key);
|
|
}
|