Currently, the $opacity-with-breakpoints variable is the only one set to true by default, we should change it to match all other $...-with-breakpoints default values.
diff --git a/src/framework/_opacities.scss b/src/framework/_opacities.scss
index f33109e..43ed58c 100644
--- a/src/framework/_opacities.scss
+++ b/src/framework/_opacities.scss
@@ -6,7 +6,7 @@
$has-classes: false !default;
/** @type {Boolean} Do we need the `--<breakpoint>` modifiers? */
-$opacities-with-breakpoints: true !default;
+$opacities-with-breakpoints: false !default;
/** @type {List} List of opacity values to use */
$opacities: (0, 25, 50, 75, 100) !default;
Currently, the
$opacity-with-breakpoints
variable is the only one set totrue
by default, we should change it to match all other$...-with-breakpoints
default values.