From: XhmikosR Date: Sun, 23 Dec 2018 11:58:58 +0000 (+0200) Subject: Fix 4:3 embed (#27910) X-Git-Tag: v4.3.0~142 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c88ed70694a8994993a33a4155a098595915e8e;p=thirdparty%2Fbootstrap.git Fix 4:3 embed (#27910) --- diff --git a/scss/_variables.scss b/scss/_variables.scss index 26a2df81d6..830c977692 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -264,7 +264,7 @@ $embed-responsive-aspect-ratios: join( ( (21 9), (16 9), - (3 4), + (4 3), (1 1), ), $embed-responsive-aspect-ratios diff --git a/site/docs/4.2/utilities/embed.md b/site/docs/4.2/utilities/embed.md index de4105fb82..1f68680746 100644 --- a/site/docs/4.2/utilities/embed.md +++ b/site/docs/4.2/utilities/embed.md @@ -55,7 +55,7 @@ Within `_variables.scss`, you can change the aspect ratios you want to use. Here $embed-responsive-aspect-ratios: ( (21 9), (16 9), - (3 4), + (4 3), (1 1) ) !default; {% endhighlight %}