// Allows the use of rem-calc() or lower-bound() in your settings
@import "foundation/functions";
+// $experimental: true;
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
// for compatibility with browser-based text zoom or user-set defaults.
// styles get applied to [data-mysite-plugin], etc
$namespace: false !default;
+// Control the inclusion of experimental properties
+$experimental: true !default;
+
// The default font-size is set to 100% of the browser style sheet (usually 16px)
// for compatibility with browser-based text zoom or user-set defaults.
// Global Foundation Mixins
//
+// @mixins
+//
+// We use this to optionally include experimental or
+// explicitly vendor prefixed properties
+@mixin experimental() {
+ @if $experimental {
+ @content;
+ }
+}
+
// @mixins
//
// We use this to control border radius.