Skip to content

Commit 8a4dfc7

Browse files
fix: consistent copy
1 parent 95997bc commit 8a4dfc7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs-site/src/pages/pattern-lab/_patterns/02-components/grid/10-grid-start-and-span.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<mark style="display: block;" class="u-bolt-margin-bottom-large">
22
<div class="u-bolt-padding-small">
3-
<p><strong>Support for Internet Explorer:</strong> Due to IE's outdated technology, it is mandatory to define column_start and row-start if you want the grid to render correctly.</p>
3+
<p><strong>Support for Internet Explorer:</strong> Due to IE's outdated technology, it is mandatory to define column_start and row_start if you want the grid to render correctly.</p>
44
</div>
55
</mark>
66

@@ -63,8 +63,8 @@
6363
</div>
6464

6565

66-
<h3>Row-start and row-span</h3>
67-
<p>Row-start and row-span are also available, they are for less common layouts.</p>
66+
<h3>Row_start and row_span</h3>
67+
<p>Row_start and row_span are also available, they are for less common layouts.</p>
6868

6969
{% set item_row %}
7070
{% include "@bolt-components-placeholder/placeholder.twig" with {

docs-site/src/pages/pattern-lab/_patterns/02-components/grid/35-grid-item-responsive-breakpoints.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<li>Starting at small breakpoint: start at row 1 and span for 4 columns</li>
2020
<li>Starting at medium breakpoint: start at row 1 and span for 3 columns</li>
2121
</ol>
22-
<pre><code>column-start: "1", column-span: "12 3@small 4@medium", row-start: "2 1@small"</code></pre>
22+
<pre><code>column_start: "1", column_span: "12 3@small 4@medium", row_start: "2 1@small"</code></pre>
2323
</li>
2424
<li>
2525
<strong>Item 2</strong>
@@ -28,7 +28,7 @@
2828
<li>Starting at small breakpoint: start at row 1 and span for 8 columns</li>
2929
<li>Starting at medium breakpoint: start at row 1 and span for 9 columns</li>
3030
</ol>
31-
<pre><code>column-start: "1 5@small 4@medium", column-span: "12 8@small 9@medium", row-start: "1 1@small"</code></pre>
31+
<pre><code>column_start: "1 5@small 4@medium", column_span: "12 8@small 9@medium", row_start: "1 1@small"</code></pre>
3232
</li>
3333
</ul>
3434
{% include "@bolt-components-grid/grid.twig" with {

docs-site/src/pages/pattern-lab/_patterns/02-components/grid/40-grid-item-align-variations.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h3>Horizontal item alignment</h3>
2-
<p>The alignment must be set manually by using column-start and column-span, that way it allows a lot more flexibility with exactly how you want to position an item horizontally.</p>
2+
<p>The alignment must be set manually by using column_start and column_span, that way it allows a lot more flexibility with exactly how you want to position an item horizontally.</p>
33

44

55
{% set item_start %}
@@ -19,7 +19,7 @@
1919
{% endset %}
2020

2121
<h3>Standard alignments</h3>
22-
<p>To align an item to the start, set column-start to 1.</p>
22+
<p>To align an item to the start, set column_start to 1.</p>
2323
<div class="u-bolt-margin-bottom-medium">
2424
{% include "@bolt-components-grid/grid.twig" with {
2525
items: [
@@ -31,7 +31,7 @@
3131
]
3232
} only %}
3333
</div>
34-
<p>To align an item to the center, set column-start by using this formula: <strong>(12 - column-span) / 2 + 1</strong>.</p>
34+
<p>To align an item to the center, set column_start by using this formula: <strong>(12 - column_span) / 2 + 1</strong>.</p>
3535
<div class="u-bolt-margin-bottom-medium">
3636
{% include "@bolt-components-grid/grid.twig" with {
3737
items: [
@@ -43,7 +43,7 @@
4343
]
4444
} only %}
4545
</div>
46-
<p>To align an item to the end, set column-start by using this formula: <strong>(12 - column-span) + 1</strong>.</p>
46+
<p>To align an item to the end, set column_start by using this formula: <strong>(12 - column_span) + 1</strong>.</p>
4747
<div class="u-bolt-margin-bottom-medium">
4848
{% include "@bolt-components-grid/grid.twig" with {
4949
items: [

0 commit comments

Comments
 (0)