Skip to content

Commit b9a244c

Browse files
committed
docs: update content
1 parent f4e809e commit b9a244c

File tree

12 files changed

+85
-51
lines changed

12 files changed

+85
-51
lines changed

Diff for: docs/assets/scss/_component-examples.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@
123123
.fixed-top,
124124
.sticky-top {
125125
position: static;
126-
margin: calc(var(--cd-example-padding) * -1) calc(var(--cd-example-padding) * -1) var(--cd-example-padding); // stylelint-disable-line function-disallowed-list
126+
margin: calc(-1 * var(--cd-example-padding)) calc(-1 * var(--cd-example-padding)) var(--cd-example-padding); // stylelint-disable-line function-disallowed-list
127127
}
128128

129129
.fixed-bottom,
130130
.sticky-bottom {
131131
position: static;
132-
margin: var(--cd-example-padding) calc(var(--cd-example-padding) * -1) calc(var(--cd-example-padding) * -1); // stylelint-disable-line function-disallowed-list
132+
margin: var(--cd-example-padding) calc(-1 * var(--cd-example-padding)) calc(-1 * var(--cd-example-padding)); // stylelint-disable-line function-disallowed-list
133133

134134
}
135135

Diff for: docs/content/forms/checks-radios.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ Our checks use custom Bootstrap icons to indicate checked or indeterminate state
2121

2222
{{< example >}}
2323
<div class="form-check">
24-
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
25-
<label class="form-check-label" for="flexCheckDefault">
24+
<input class="form-check-input" type="checkbox" value="" id="checkDefault">
25+
<label class="form-check-label" for="checkDefault">
2626
Default checkbox
2727
</label>
2828
</div>
2929
<div class="form-check">
30-
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked" checked>
31-
<label class="form-check-label" for="flexCheckChecked">
30+
<input class="form-check-input" type="checkbox" value="" id="checkChecked" checked>
31+
<label class="form-check-label" for="checkChecked">
3232
Checked checkbox
3333
</label>
3434
</div>
@@ -40,8 +40,8 @@ Checkboxes can utilize the `:indeterminate` pseudo class when manually set via J
4040

4141
{{< example class="docs-example-indeterminate">}}
4242
<div class="form-check">
43-
<input class="form-check-input" type="checkbox" value="" id="flexCheckIndeterminate">
44-
<label class="form-check-label" for="flexCheckIndeterminate">
43+
<input class="form-check-input" type="checkbox" value="" id="checkIndeterminate">
44+
<label class="form-check-label" for="checkIndeterminate">
4545
Indeterminate checkbox
4646
</label>
4747
</div>
@@ -53,14 +53,14 @@ Add the `disabled` attribute and the associated `<label>`s are automatically sty
5353

5454
{{< example >}}
5555
<div class="form-check">
56-
<input class="form-check-input" type="checkbox" value="" id="flexCheckDisabled" disabled>
57-
<label class="form-check-label" for="flexCheckDisabled">
56+
<input class="form-check-input" type="checkbox" value="" id="checkDisabled" disabled>
57+
<label class="form-check-label" for="checkDisabled">
5858
Disabled checkbox
5959
</label>
6060
</div>
6161
<div class="form-check">
62-
<input class="form-check-input" type="checkbox" value="" id="flexCheckCheckedDisabled" checked disabled>
63-
<label class="form-check-label" for="flexCheckCheckedDisabled">
62+
<input class="form-check-input" type="checkbox" value="" id="checkCheckedDisabled" checked disabled>
63+
<label class="form-check-label" for="checkCheckedDisabled">
6464
Disabled checked checkbox
6565
</label>
6666
</div>

Diff for: docs/content/helpers/icon-link.md

+24-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
---
22
layout: docs
33
title: Icon link
4-
description: Quickly create stylized hyperlinks with Bootstrap Icons or other icons.
4+
description: Quickly create stylized hyperlinks with CoreUI Icons or other icons.
55
group: helpers
66
toc: true
7-
bootstrap: true
8-
added: 5.3
7+
added: "5.3"
98
---
109

1110
The icon link helper component modifies our default link styles to enhance their appearance and quickly align any pairing of icon and text. Alignment is set via inline flexbox styling and a default `gap` value. We stylize the underline with a custom offset and color. Icons are automatically sized to `1em` to best match their associated text's `font-size`.
1211

13-
Icon links assume [Bootstrap Icons](https://icons.getbootstrap.com) are being used, but you can use any icon or image you like.
12+
Icon links assume [CoreUI Icons](https://coreui.io/icons/) are being used, but you can use any icon or image you like.
1413

1514
{{< callout >}}
1615
When icons are purely decorative, they should be hidden from assistive technologies using `aria-hidden="true"`, as we've done in our examples. For icons that convey meaning, provide an appropriate text alternative by adding `role="img"` and an appropriate `aria-label="..."` to the SVGs.
@@ -22,15 +21,19 @@ Take a regular `<a>` element, add `.icon-link`, and insert an icon on either the
2221

2322
{{< example >}}
2423
<a class="icon-link" href="#">
25-
<svg class="bi" aria-hidden="true"><use xlink:href="#box-seam"></use></svg>
24+
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 16 16" aria-hidden="true">
25+
<path d="M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2l-2.218-.887zm3.564 1.426L5.596 5 8 5.961 14.154 3.5l-2.404-.961zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .314-.464L7.443.184z"/>
26+
</svg>
2627
Icon link
2728
</a>
2829
{{< /example >}}
2930

3031
{{< example >}}
3132
<a class="icon-link" href="#">
3233
Icon link
33-
<svg class="bi" aria-hidden="true"><use xlink:href="#arrow-right"></use></svg>
34+
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 16 16" aria-hidden="true">
35+
<path d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
36+
</svg>
3437
</a>
3538
{{< /example >}}
3639

@@ -41,7 +44,9 @@ Add `.icon-link-hover` to move the icon to the right on hover.
4144
{{< example >}}
4245
<a class="icon-link icon-link-hover" href="#">
4346
Icon link
44-
<svg class="bi" aria-hidden="true"><use xlink:href="#arrow-right"></use></svg>
47+
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 16 16" aria-hidden="true">
48+
<path d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
49+
</svg>
4550
</a>
4651
{{< /example >}}
4752

@@ -57,7 +62,10 @@ Customize the hover `transform` by overriding the `--cui-icon-link-transform` CS
5762

5863
{{< example >}}
5964
<a class="icon-link icon-link-hover" style="--cui-icon-link-transform: translate3d(0, -.125rem, 0);" href="#">
60-
<svg class="bi" aria-hidden="true"><use xlink:href="#clipboard"></use></svg>
65+
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 16 16" aria-hidden="true">
66+
<path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"/>
67+
<path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z"/>
68+
</svg>
6169
Icon link
6270
</a>
6371
{{< /example >}}
@@ -67,23 +75,27 @@ Customize the color by overriding the `--cui-link-*` CSS variable:
6775
{{< example >}}
6876
<a class="icon-link icon-link-hover" style="--cui-link-hover-color-rgb: 25, 135, 84;" href="#">
6977
Icon link
70-
<svg class="bi" aria-hidden="true"><use xlink:href="#arrow-right"></use></svg>
78+
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 16 16" aria-hidden="true">
79+
<path d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
80+
</svg>
7181
</a>
7282
{{< /example >}}
7383

7484
### Sass variables
7585

76-
Customize the icon link Sass variables to modify all icon link styles across your Bootstrap-powered project.
86+
Customize the icon link Sass variables to modify all icon link styles across your CoreUI-powered project.
7787

7888
{{< scss-docs name="icon-link-variables" file="scss/_variables.scss" >}}
7989

8090
### Sass utilities API
8191

82-
Modify icon links with any of [our link utilities]({{< docsref "/utilities/link" >}}) for modifying underline color and offset.
92+
Modify icon links with any of [our link utilities]({{< docsref "/utilities/link/" >}}) for modifying underline color and offset.
8393

8494
{{< example >}}
8595
<a class="icon-link icon-link-hover link-success link-underline-success link-underline-opacity-25" href="#">
8696
Icon link
87-
<svg class="bi" aria-hidden="true"><use xlink:href="#arrow-right"></use></svg>
97+
<svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 16 16" aria-hidden="true">
98+
<path d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z"/>
99+
</svg>
88100
</a>
89101
{{< /example >}}

Diff for: docs/content/helpers/stacks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ added: "5.1"
1111
Stacks offer a shortcut for applying a number of flexbox properties to quickly and easily create layouts in Bootstrap. All credit for the concept and implementation goes to the open source [Pylon project](https://almonk.github.io/pylon/).
1212

1313
{{< callout warning >}}
14-
Heads up! Support for gap utilities with flexbox was recently added to Safari, so consider verifying your intended browser support. Grid layout should have no issues. [Read more](https://caniuse.com/flexbox-gap).
14+
**Heads up!** Support for gap utilities with flexbox isn't available in Safari prior to 14.5, so consider verifying your intended browser support. Grid layout should have no issues. [Read more](https://caniuse.com/flexbox-gap).
1515
{{< /callout >}}
1616

1717
## Vertical

Diff for: docs/content/layout/breakpoints.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For more information and examples on how to modify our Sass maps and variables,
4444

4545
## Media queries
4646

47-
Since CoreUI for Bootstrap is developed to be mobile first, we use a handful of [media queries](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries) to create sensible breakpoints for our layouts and interfaces. These breakpoints are mostly based on minimum viewport widths and allow us to scale up elements as the viewport changes.
47+
Since CoreUI for Bootstrap is developed to be mobile first, we use a handful of [media queries](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_media_queries/Using_media_queries) to create sensible breakpoints for our layouts and interfaces. These breakpoints are mostly based on minimum viewport widths and allow us to scale up elements as the viewport changes.
4848

4949
### Min-width
5050

Diff for: docs/content/layout/columns.md

+21
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,27 @@ There are also responsive `.order-first` and `.order-last` classes that change t
224224
</div>
225225
{{< /example >}}
226226

227+
If you need more `.order-*` classes, you can add new ones by modifying our `$utilities` Sass map. [Read our Sass maps and loops docs]({{< docsref "/customize/sass#maps-and-loops" >}}) or [our Modify utilities docs]({{< docsref "/utilities/api#modify-utilities" >}}) for details.
228+
229+
```scss
230+
$utilities: map-merge(
231+
$utilities,
232+
(
233+
"order": map-merge(
234+
map-get($utilities, "order"),
235+
(
236+
values: map-merge(
237+
map-get(map-get($utilities, "order"), "values"),
238+
(
239+
6: 6, // Add a new `.order-{breakpoint}-6` utility
240+
last: 7 // Change the `.order-{breakpoint}-last` utility to use the next number
241+
)
242+
),
243+
),
244+
),
245+
)
246+
);
247+
227248
### Offsetting columns
228249

229250
You can offset grid columns in two ways: our responsive `.offset-` grid classes and our [margin utilities]({{< docsref "/utilities/spacing" >}}). Grid classes are sized to match columns while margins are more useful for quick layouts where the width of the offset is variable.

Diff for: docs/content/layout/css-grid.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Similar to our default grid system, our CSS Grid allows for easy nesting of `.gr
149149
In practice this allows for more complex and custom layouts when compared to our default grid system.
150150

151151
{{< example class="docs-example-cssgrid" >}}
152-
<div class="grid text-center" style="--cui-columns: 3;">
152+
<div class="grid text-center overflow-x-auto" style="--cui-columns: 3;">
153153
<div>
154154
First auto-column
155155
<div class="grid">

Diff for: docs/content/utilities/api.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ aliases:
1111
toc: true
1212
---
1313

14-
CoreUI for Bootstrap utilities are generated with our utility API and can be used to modify or extend our default set of utility classes via Sass. Our utility API is based on a series of Sass maps and functions for generating families of classes with various options. If you're unfamiliar with Sass maps, read up on the [official Sass docs](https://sass-lang.com/documentation/values/maps) to get started.
14+
CoreUI for Bootstrap utilities are generated with our utility API and can be used to modify or extend our default set of utility classes via Sass. Our utility API is based on a series of Sass maps and functions for generating families of classes with various options. If you're unfamiliar with Sass maps, read up on the [official Sass docs](https://sass-lang.com/documentation/values/maps/) to get started.
1515

1616
The `$utilities` map contains all our utilities and is later merged with your custom `$utilities` map, if present. The utility map contains a keyed list of utility groups which accept the following options:
1717

@@ -521,7 +521,7 @@ $utilities: map-merge(
521521

522522
### Remove utilities
523523

524-
Remove any of the default utilities with the [`map-remove()` Sass function](https://sass-lang.com/documentation/modules/map#remove).
524+
Remove any of the default utilities with the [`map-remove()` Sass function](https://sass-lang.com/documentation/modules/map/#remove).
525525

526526
```scss
527527
@import "@coreui/coreui/scss/functions";
@@ -536,7 +536,7 @@ $utilities: map-remove($utilities, "width", "float");
536536
@import "@coreui/coreui/scss/utilities/api";
537537
```
538538

539-
You can also use the [`map-merge()` Sass function](https://sass-lang.com/documentation/modules/map#merge) and set the group key to `null` to remove the utility.
539+
You can also use the [`map-merge()` Sass function](https://sass-lang.com/documentation/modules/map/#merge) and set the group key to `null` to remove the utility.
540540

541541
```scss
542542
@import "@coreui/coreui/scss/functions";
@@ -557,7 +557,7 @@ $utilities: map-merge(
557557

558558
### Add, remove, modify
559559

560-
You can add, remove, and modify many utilities all at once with the [`map-merge()` Sass function](https://sass-lang.com/documentation/modules/map#merge). Here's how you can combine the previous examples into one larger map.
560+
You can add, remove, and modify many utilities all at once with the [`map-merge()` Sass function](https://sass-lang.com/documentation/modules/map/#merge). Here's how you can combine the previous examples into one larger map.
561561

562562
```scss
563563
@import "@coreui/coreui/scss/functions";

Diff for: docs/content/utilities/borders.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,6 @@ Add classes to an element to easily round its corners.
154154
{{< placeholder width="75" height="75" class="rounded-end" title="Example right rounded image" >}}
155155
{{< placeholder width="75" height="75" class="rounded-bottom" title="Example bottom rounded image" >}}
156156
{{< placeholder width="75" height="75" class="rounded-start" title="Example left rounded image" >}}
157-
{{< placeholder width="75" height="75" class="rounded-circle" title="Completely round image" >}}
158-
{{< placeholder width="150" height="75" class="rounded-pill" title="Rounded pill image" >}}
159157
{{< /example >}}
160158

161159
{{< example class="docs-example-rounded-utils" >}}
@@ -168,7 +166,7 @@ Add classes to an element to easily round its corners.
168166

169167
### Sizes
170168

171-
Use the scaling classes for larger or smaller rounded corners. Sizes range from `0` to `5`, and can be configured by modifying the utilities API.
169+
Use the scaling classes for larger or smaller rounded corners. Sizes range from `0` to `5` including `circle` and `pill`, and can be configured by modifying the utilities API.
172170

173171
{{< example class="docs-example-rounded-utils" >}}
174172
{{< placeholder width="75" height="75" class="rounded-0" title="Example non-rounded image" >}}
@@ -177,6 +175,9 @@ Use the scaling classes for larger or smaller rounded corners. Sizes range from
177175
{{< placeholder width="75" height="75" class="rounded-3" title="Example large rounded image" >}}
178176
{{< placeholder width="75" height="75" class="rounded-4" title="Example larger rounded image" >}}
179177
{{< placeholder width="75" height="75" class="rounded-5" title="Example extra large rounded image" >}}
178+
{{< placeholder width="75" height="75" class="rounded-circle" title="Completely round image" >}}
179+
{{< placeholder width="150" height="75" class="rounded-pill" title="Rounded pill image" >}}
180+
180181
{{< /example >}}
181182

182183
## Customizing

Diff for: docs/content/utilities/display.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ For faster mobile-friendly development, use responsive display classes for showi
5656

5757
To hide elements simply use the `.d-none` class or one of the `.d-{sm,md,lg,xl,xxl}-none` classes for any responsive screen variation.
5858

59-
To show an element only on a given interval of screen sizes you can combine one `.d-*-none` class with a `.d-*-*` class, for example `.d-none .d-md-block .d-xl-none .d-xxl-none` will hide the element for all screen sizes except on medium and large devices.
59+
To show an element only on a given interval of screen sizes you can combine one `.d-*-none` class with a `.d-*-*` class, for example `.d-none .d-md-block .d-xl-none` will hide the element for all screen sizes except on medium and large devices.
6060

6161
{{< bs-table >}}
6262
| Screen size | Class |

Diff for: docs/content/utilities/position.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Here are some real life examples of these classes:
9595
</button>
9696

9797
<div class="position-relative py-2 px-4 text-bg-secondary border border-secondary rounded-pill">
98-
Marker <svg width="1em" height="1em" viewBox="0 0 16 16" class="position-absolute top-100 start-50 translate-middle mt-1" fill="var(--cui-secondary)" xmlns="http://www.w3.org/2000/svg"><path d="M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>
98+
Marker <svg width="1em" height="1em" viewBox="0 0 16 16" class="position-absolute top-100 start-50 translate-middle mt-1" fill="var(--cui-secondary)" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>
9999
</div>
100100

101101
<button type="button" class="btn btn-primary position-relative">

Diff for: docs/content/utilities/spacing.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ The syntax is nearly the same as the default, positive margin utilities, but wit
104104
When using `display: grid` or `display: flex`, you can make use of `gap` utilities on the parent element. This can save on having to add margin utilities to individual children of a grid or flex container. Gap utilities are responsive by default, and are generated via our utilities API, based on the `$spacers` Sass map.
105105

106106
{{< example class="docs-example-cssgrid" >}}
107-
<div class="grid gap-3">
108-
<div class="p-2 g-col-6">Grid item 1</div>
109-
<div class="p-2 g-col-6">Grid item 2</div>
110-
<div class="p-2 g-col-6">Grid item 3</div>
111-
<div class="p-2 g-col-6">Grid item 4</div>
107+
<div style="grid-template-columns: 1fr 1fr;" class="d-grid gap-3">
108+
<div class="p-2">Grid item 1</div>
109+
<div class="p-2">Grid item 2</div>
110+
<div class="p-2">Grid item 3</div>
111+
<div class="p-2">Grid item 4</div>
112112
</div>
113113
{{< /example >}}
114114

@@ -119,11 +119,11 @@ Support includes responsive options for all of CoreUI's grid breakpoints, as wel
119119
`row-gap` sets the vertical space between children items in the specified container.
120120

121121
{{< example class="docs-example-cssgrid" >}}
122-
<div class="grid gap-0 row-gap-3">
123-
<div class="p-2 g-col-6">Grid item 1</div>
124-
<div class="p-2 g-col-6">Grid item 2</div>
125-
<div class="p-2 g-col-6">Grid item 3</div>
126-
<div class="p-2 g-col-6">Grid item 4</div>
122+
<div style="grid-template-columns: 1fr 1fr;" class="d-grid gap-0 row-gap-3">
123+
<div class="p-2">Grid item 1</div>
124+
<div class="p-2">Grid item 2</div>
125+
<div class="p-2">Grid item 3</div>
126+
<div class="p-2">Grid item 4</div>
127127
</div>
128128
{{< /example >}}
129129

@@ -132,11 +132,11 @@ Support includes responsive options for all of CoreUI's grid breakpoints, as wel
132132
`column-gap` sets the horizontal space between children items in the specified container.
133133

134134
{{< example class="docs-example-cssgrid" >}}
135-
<div class="grid gap-0 column-gap-3">
136-
<div class="p-2 g-col-6">Grid item 1</div>
137-
<div class="p-2 g-col-6">Grid item 2</div>
138-
<div class="p-2 g-col-6">Grid item 3</div>
139-
<div class="p-2 g-col-6">Grid item 4</div>
135+
<div style="grid-template-columns: 1fr 1fr;" class="d-grid gap-0 column-gap-3">
136+
<div class="p-2">Grid item 1</div>
137+
<div class="p-2">Grid item 2</div>
138+
<div class="p-2">Grid item 3</div>
139+
<div class="p-2">Grid item 4</div>
140140
</div>
141141
{{< /example >}}
142142

0 commit comments

Comments
 (0)