diff --git a/src/css/index.ts b/src/css/index.ts index 2d034e8..af794d6 100644 --- a/src/css/index.ts +++ b/src/css/index.ts @@ -192,7 +192,10 @@ export class CSSParsedDeclaration { this.position = parse(position, declaration.position); this.textAlign = parse(textAlign, declaration.textAlign); this.textDecorationColor = parse(textDecorationColor, declaration.textDecorationColor ?? declaration.color); - this.textDecorationLine = parse(textDecorationLine, declaration.textDecorationLine ?? declaration.textDecoration); + this.textDecorationLine = parse( + textDecorationLine, + declaration.textDecorationLine ?? declaration.textDecoration + ); this.textShadow = parse(textShadow, declaration.textShadow); this.textTransform = parse(textTransform, declaration.textTransform); this.transform = parse(transform, declaration.transform);