From 6431442dc864481d64030516b0806e63978573ae Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Sat, 14 Mar 2026 09:00:59 +0100 Subject: [PATCH] [css-mixins-1] chore: added missing CSS values Two lines of CSS are missing values for their CSS properties. Missing those doesn't seem to be on purpose, not being related to that `mixin` and `macro` rule functionality, so they might only being be missing unexpectedly. --- css-mixins-1/Overview.bs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css-mixins-1/Overview.bs b/css-mixins-1/Overview.bs index f87e13d6738d..0200c2905fce 100644 --- a/css-mixins-1/Overview.bs +++ b/css-mixins-1/Overview.bs @@ -1406,7 +1406,7 @@ but the mixin not use it. } @apply --two-column { display: grid; - grid-template-columns: ; + grid-template-columns: 60px 60px; } } @@ -1551,7 +1551,7 @@ or potentially a fallback block. } @apply --two-column { display: grid; - grid-template-columns: ; + grid-template-columns: 60px 60px; } } @@ -2726,4 +2726,4 @@ Changes {#changes} Changes since the First Public Working Draft of 15 May 2025: -* Added Web Platform Tests coverage \ No newline at end of file +* Added Web Platform Tests coverage