diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 565c466c2fa2..226c9143a1a1 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -16,7 +16,7 @@ $utilities: map-merge( ), "overflow": ( property: overflow, - values: auto hidden, + values: auto hidden visible scroll, ), "display": ( responsive: true, diff --git a/site/content/docs/5.0/utilities/overflow.md b/site/content/docs/5.0/utilities/overflow.md index f8ae2f3248ee..bec79e1fc8a1 100644 --- a/site/content/docs/5.0/utilities/overflow.md +++ b/site/content/docs/5.0/utilities/overflow.md @@ -5,20 +5,28 @@ description: Use these shorthand utilities for quickly configuring how content o group: utilities --- -Barebones `overflow` functionality is provided for two values by default, and they are not responsive. +Adjust the `overflow` property on the fly with four default values and classes. These classes are not responsive by default.
.overflow-auto
on an element with set width and height dimensions. By design, this content will vertically scroll.
.overflow-hidden
on an element with set width and height dimensions.
.overflow-visible
on an element with set width and height dimensions.
+ .overflow-scroll
on an element with set width and height dimensions.
+