From 30b08d1e8a4e720b3070b14037c116bc710181f6 Mon Sep 17 00:00:00 2001 From: IHIutch Date: Thu, 10 Jun 2021 16:45:35 -0400 Subject: [PATCH] Fix grid item example --- website/pages/grid.mdx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/website/pages/grid.mdx b/website/pages/grid.mdx index f722983b..e0c45771 100644 --- a/website/pages/grid.mdx +++ b/website/pages/grid.mdx @@ -55,8 +55,14 @@ time. In some layouts, you may need certain grid items to span specific amount of columns or rows instead of an even distribution. To achieve this, you need to pass the `colSpan` prop to the `CGridItem` component to span across columns and also pass the `rowSpan` component to span across rows. You also need to specify the `templateColumns` and `templateRows`. ```vue live=true - - + + @@ -69,8 +75,8 @@ Pass the `colStart` and `colEnd` prop to `CGridItem` component to make an elemen ```vue live=true - - + + ```