From 60fd71fd064c243cfc7a96e8aef4fef7994cc8b9 Mon Sep 17 00:00:00 2001 From: Levi Hechenberger Di Valentino <68319554+levvij@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:46:30 +0100 Subject: [PATCH] fix(css): Fix scroll() definition format (#701) The definition was oddly formatted, which caused my parser to break. ### Description The declaration was not properly formatted. ### Motivation Im writing a strict parser for this format and it failed. ### Additional details None ### Related issues and pull requests None --- css/syntaxes.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/syntaxes.json b/css/syntaxes.json index 23f19d9a..8a21b4a0 100644 --- a/css/syntaxes.json +++ b/css/syntaxes.json @@ -696,7 +696,7 @@ "syntax": "scaleZ( [ | ] )" }, "scroll()": { - "syntax": "scroll([ || ]?)" + "syntax": "scroll( [ || ]? )" }, "scroller": { "syntax": "root | nearest"