Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
338 B
Text
15 lines
338 B
Text
let Declaration = require('../declaration')
|
|
|
|
class BorderImage extends Declaration {
|
|
/**
|
|
* Remove fill parameter for prefixed declarations
|
|
*/
|
|
set(decl, prefix) {
|
|
decl.value = decl.value.replace(/\s+fill(\s)/, '$1')
|
|
return super.set(decl, prefix)
|
|
}
|
|
}
|
|
|
|
BorderImage.names = ['border-image']
|
|
|
|
module.exports = BorderImage
|