From d60ab199fed6155a292b1d4031419b9d51336c56 Mon Sep 17 00:00:00 2001 From: Andrew Brampton Date: Wed, 13 Mar 2024 10:15:34 -0700 Subject: [PATCH] Use the modern names for column-gap/row-gap as they got renamed in a early version of the spec. --- src/components/AppCode.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/AppCode.vue b/src/components/AppCode.vue index a17f82b..4a66901 100644 --- a/src/components/AppCode.vue +++ b/src/components/AppCode.vue @@ -67,12 +67,12 @@
- grid-column-gap: + column-gap: {{ columngap }}px;
- grid-row-gap: + row-gap: {{ rowgap }}px;
}