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 ✅
39 lines
790 B
JavaScript
39 lines
790 B
JavaScript
let Declaration = require('../declaration')
|
|
|
|
class MaskBorder extends Declaration {
|
|
/**
|
|
* Return property name by final spec
|
|
*/
|
|
normalize() {
|
|
return this.name.replace('box-image', 'border')
|
|
}
|
|
|
|
/**
|
|
* Return flex property for 2012 spec
|
|
*/
|
|
prefixed(prop, prefix) {
|
|
let result = super.prefixed(prop, prefix)
|
|
if (prefix === '-webkit-') {
|
|
result = result.replace('border', 'box-image')
|
|
}
|
|
return result
|
|
}
|
|
}
|
|
|
|
MaskBorder.names = [
|
|
'mask-border',
|
|
'mask-border-source',
|
|
'mask-border-slice',
|
|
'mask-border-width',
|
|
'mask-border-outset',
|
|
'mask-border-repeat',
|
|
'mask-box-image',
|
|
'mask-box-image-source',
|
|
'mask-box-image-slice',
|
|
'mask-box-image-width',
|
|
'mask-box-image-outset',
|
|
'mask-box-image-repeat'
|
|
]
|
|
|
|
module.exports = MaskBorder
|