Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/doc/backgroundcolor/examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function ExamplesDoc(props) {
<div class="bg-primary font-bold border-round m-2 flex align-items-center justify-content-center" style="min-width: 200px; min-height: 100px">
bg-primary
</div>
<div class="bg-primary font-bold border-round m-2 flex align-items-center justify-content-center" style="min-width: 200px; min-height: 100px">
<div class="bg-primary-reverse font-bold border-round m-2 flex align-items-center justify-content-center" style="min-width: 200px; min-height: 100px">
bg-primary
</div>
</div>
Expand All @@ -26,8 +26,8 @@ export function ExamplesDoc(props) {
<div className="bg-primary font-bold border-round m-2 flex align-items-center justify-content-center" style={{ minWidth: '200px', minHeight: '100px' }}>
bg-primary
</div>
<div className="bg-primary font-bold border-round m-2 flex align-items-center justify-content-center" style={{ minWidth: '200px', minHeight: '100px' }}>
bg-primary
<div className="bg-primary-reverse font-bold border-round m-2 flex align-items-center justify-content-center" style={{ minWidth: '200px', minHeight: '100px' }}>
bg-primary-reverse
</div>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions components/doc/flexshrink/classesdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ export function ClassesDoc(props) {
</thead>
<tbody>
<tr>
<td>flex-grow-0</td>
<td>flex-grow: 0;</td>
<td>flex-shrink-0</td>
<td>flex-shrink: 0;</td>
</tr>
<tr>
<td>flex-grow-1</td>
<td>flex-grow: 1;</td>
<td>flex-shrink-1</td>
<td>flex-shrink: 1;</td>
</tr>
</tbody>
</table>
Expand Down