We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bab6376 + 4195725 commit 0da7e83Copy full SHA for 0da7e83
docs/guides/bs5migration/index.md
@@ -382,3 +382,23 @@ shift-color($primary, -20%);
382
The `theme-color-level()` has been changed to `color-level()` and then subsequently removed and replaced by scale-color().
383
In the stable 5.0 the final decision was to adopt `shift-color()` so we will use this function in the bridge file.
384
:::
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
401
+<div class="rounded-3"> Rounded content </div>
402
403
404
+</ValidExample>
0 commit comments