From: mheward Date: Wed, 4 Jan 2017 10:07:19 +0000 (+0000) Subject: Update _responsive-embed.scss X-Git-Tag: 6.3.1~17^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed5086ec71834c38d99558d91b9986bcb2c766bc;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Update _responsive-embed.scss The var in the mixin currently doesn't exist and as such including it without a set $ratio var results in build failure. --- diff --git a/scss/components/_responsive-embed.scss b/scss/components/_responsive-embed.scss index f8d822588..ae8816595 100644 --- a/scss/components/_responsive-embed.scss +++ b/scss/components/_responsive-embed.scss @@ -60,7 +60,7 @@ $responsive-embed-ratios: ( @include foundation-responsive-embed; } -@mixin flex-video($ratio: $responsive-embed-ratio) { +@mixin flex-video($ratio: default) { @warn 'This mixin is being replaced by responsive-embed(). flex-video() will be removed in Foundation 6.4.'; @include responsive-embed; }