Преглед изворни кода

chore: fix markdown example with overflowing content (#1410) [ci skip]

Bener пре 5 година
родитељ
комит
81849d760b

+ 2 - 1
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;

+ 2 - 1
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;