Skip to content

Commit 0da7e83

Browse files
authored
Merge pull request #1178 from roland04/devdocs-bootstrap-rounded
[docs] Documentation for MDL-81823
2 parents bab6376 + 4195725 commit 0da7e83

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/guides/bs5migration/index.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,3 +382,23 @@ shift-color($primary, -20%);
382382
The `theme-color-level()` has been changed to `color-level()` and then subsequently removed and replaced by scale-color().
383383
In the stable 5.0 the final decision was to adopt `shift-color()` so we will use this function in the bridge file.
384384
:::
385+
386+
### Rounded classes
387+
388+
The `.rounded-sm` and `.rounded-lg` classes have been replaced with `.rounded-1` and `.rounded-3`.
389+
390+
<InvalidExample title="Don't">
391+
392+
```html
393+
<div class="rounded-lg"> Rounded content </div>
394+
```
395+
396+
</InvalidExample>
397+
398+
<ValidExample title="Do">
399+
400+
```html
401+
<div class="rounded-3"> Rounded content </div>
402+
```
403+
404+
</ValidExample>

0 commit comments

Comments
 (0)