From: Bener Date: Thu, 25 Jun 2020 15:03:59 +0000 (+0800) Subject: chore: fix markdown example with overflowing content (#1410) [ci skip] X-Git-Tag: v3.0.0-beta.16~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81849d760b7a009591e27639456f623555168ae6;p=thirdparty%2Fvuejs%2Fcore.git chore: fix markdown example with overflowing content (#1410) [ci skip] --- diff --git a/packages/vue/examples/classic/markdown.html b/packages/vue/examples/classic/markdown.html index 45b887827d..3d9126dd33 100644 --- a/packages/vue/examples/classic/markdown.html +++ b/packages/vue/examples/classic/markdown.html @@ -37,7 +37,8 @@ html, body, #editor { textarea, #editor div { display: inline-block; - width: 49%; + overflow: auto; + width: 50%; height: 100%; vertical-align: top; -webkit-box-sizing: border-box; diff --git a/packages/vue/examples/composition/markdown.html b/packages/vue/examples/composition/markdown.html index c851b42af8..8c5a54e8d1 100644 --- a/packages/vue/examples/composition/markdown.html +++ b/packages/vue/examples/composition/markdown.html @@ -36,7 +36,8 @@ html, body, #editor { textarea, #editor div { display: inline-block; - width: 49%; + overflow: auto; + width: 50%; height: 100%; vertical-align: top; -webkit-box-sizing: border-box;