1
1
mirror of https://github.com/primer/css.git synced 2024-10-27 09:48:58 +03:00

Merge pull request #1355 from NikitaIT/patch-1

docs(progress): fix not valid html example
This commit is contained in:
simurai 2021-04-23 16:11:55 +09:00 committed by GitHub
commit 65b5aec15e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ For inline progress indicators, use the `Progress` and `d-inline-flex` with an i
```html live
<span class="text-small text-gray mr-2">4 of 16</span>
<span class="Progress d-inline-flex" style="width: 160px">
<div class="Progress-item color-bg-success-inverse" style="width: 25%"></div>
<span class="Progress-item color-bg-success-inverse" style="width: 25%"></span>
</span>
```