aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-12-23 13:58:58 +0200
committerGitHub <[email protected]>2018-12-23 13:58:58 +0200
commit3c88ed70694a8994993a33a4155a098595915e8e (patch)
tree7294acb5aaf1e37cddf8ab48cce6d6220cf9df26
parent81e35985b8edf38422d2057f903d9134a1083e17 (diff)
downloadbootstrap-3c88ed70694a8994993a33a4155a098595915e8e.tar.xz
bootstrap-3c88ed70694a8994993a33a4155a098595915e8e.zip
Fix 4:3 embed (#27910)
-rw-r--r--scss/_variables.scss2
-rw-r--r--site/docs/4.2/utilities/embed.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 26a2df81d..830c97769 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 de4105fb8..1f6868074 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 %}