From 0ad42300d4e724931d5501e341bb0c9f6995792e Mon Sep 17 00:00:00 2001 From: Hugo Peek Date: Sat, 17 Jun 2023 07:42:42 +0000 Subject: [PATCH] Add CSS variable to valid.css test file --- tests/_files/valid.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/_files/valid.css b/tests/_files/valid.css index b8e58d8..fb399c3 100644 --- a/tests/_files/valid.css +++ b/tests/_files/valid.css @@ -1,4 +1,8 @@ -.button.drodown::after { +:root { + --border-radius: 3px; +} + +.button.dropdown::after { display: block; width: 0; height: 0; @@ -7,6 +11,7 @@ border-bottom-width: 0; border-top-style: solid; border-color: #fefefe transparent transparent; + border-radius: var(--border-radius); position: relative; top: 0.4em; display: inline-block;