Skip to content

Commit fb82827

Browse files
committed
More fixes
1 parent d6c1cdf commit fb82827

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed

site/src/content/docs/components/accordion.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ The accordion uses [collapse]([[docsref:/components/collapse]]) internally to ma
1818
Click the accordions below to expand/collapse the accordion content.
1919

2020
To render an accordion that’s expanded by default:
21+
2122
- add the `.show` class on the `.accordion-collapse` element.
2223
- drop the `.collapsed` class from the `.accordion-button` element and set its `aria-expanded` attribute to `true`.
2324

site/src/content/docs/getting-started/vite.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ In the next and final section to this guide, we’ll import all of Bootstrap’s
166166

167167
*You can also import our stylesheets individually if you want. [Read our Sass import docs]([[docsref:/customize/sass#importing]]) for details.*
168168

169-
3. **Next we load the CSS and import Bootstrap’s JavaScript.** Add the following to `src/js/main.js` to load the CSS and import all of Bootstrap’s JS. Popper will be imported automatically through Bootstrap.
169+
2. **Next we load the CSS and import Bootstrap’s JavaScript.** Add the following to `src/js/main.js` to load the CSS and import all of Bootstrap’s JS. Popper will be imported automatically through Bootstrap.
170170

171171
```js
172172
// Import our custom CSS
@@ -187,7 +187,7 @@ In the next and final section to this guide, we’ll import all of Bootstrap’s
187187

188188
*[Read our JavaScript docs]([[docsref:/getting-started/javascript/]]) for more information on how to use Bootstrap’s plugins.*
189189

190-
4. **And you’re done! 🎉** With Bootstrap’s source Sass and JS fully loaded, your local development server should now look like this:
190+
3. **And you’re done! 🎉** With Bootstrap’s source Sass and JS fully loaded, your local development server should now look like this:
191191

192192
<img class="img-fluid" src="/docs/[[config:docs_version]]/assets/img/guides/vite-dev-server-bootstrap.png" alt="Vite dev server running with Bootstrap" />
193193

site/src/content/docs/helpers/ratio.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ This CSS variable makes it easy to modify the aspect ratio across breakpoints. T
6363
<div>4x3, then 2x1</div>
6464
</div>`} />
6565

66-
6766
## Sass maps
6867

6968
Within `_variables.scss`, you can change the aspect ratios you want to use. Here’s our default `$ratio-aspect-ratios` map. Modify the map as you like and recompile your Sass to put them to use.

site/src/content/docs/layout/breakpoints.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Bootstrap includes six default breakpoints, sometimes referred to as _grid tiers
2828
| Extra extra large | `xxl` | &ge;1400px |
2929
</BsTable>
3030

31-
3231
Each breakpoint was chosen to comfortably hold containers whose widths are multiples of 12. Breakpoints are also representative of a subset of common device sizes and viewport dimensions—they don’t specifically target every use case or device. Instead, the ranges provide a strong and consistent foundation to build on for nearly any device.
3332

3433
These breakpoints are customizable via Sass—you’ll find them in a Sass map in our `_variables.scss` stylesheet.

site/src/content/docs/layout/columns.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ There are also responsive `.order-first` and `.order-last` classes that change t
217217
</div>
218218
</div>`} />
219219

220-
221220
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.
222221

223222
```scss

site/src/content/docs/migration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ Want more information? [Read the v5.1.0 blog post.](https://blog.getbootstrap.co
701701

702702
- <span class="badge text-bg-danger">Breaking</span> Removed `.rounded-sm` and `rounded-lg`, and introduced a new scale of classes, `.rounded-0` to `.rounded-3`. [See #31687](https://github.com/twbs/bootstrap/pull/31687).
703703

704-
- Added new `line-height` utilities: `.lh-1`, `.lh-sm`, `.lh-base` and `.lh-lg`. See [here]([[docsref:/utilities/text#line-height]]).
704+
- Added new `line-height` utilities: `.lh-1`, `.lh-sm`, `.lh-base` and `.lh-lg`. See [text utilities]([[docsref:/utilities/text#line-height]]).
705705

706706
- Moved the `.d-none` utility in our CSS to give it more weight over other display utilities.
707707

0 commit comments

Comments
 (0)