Skip to content

Commit 81849d7

Browse files
authored
chore: fix markdown example with overflowing content (vuejs#1410) [ci skip]
1 parent d7beea0 commit 81849d7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/vue/examples/classic/markdown.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737

3838
textarea, #editor div {
3939
display: inline-block;
40-
width: 49%;
40+
overflow: auto;
41+
width: 50%;
4142
height: 100%;
4243
vertical-align: top;
4344
-webkit-box-sizing: border-box;

packages/vue/examples/composition/markdown.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636

3737
textarea, #editor div {
3838
display: inline-block;
39-
width: 49%;
39+
overflow: auto;
40+
width: 50%;
4041
height: 100%;
4142
vertical-align: top;
4243
-webkit-box-sizing: border-box;

0 commit comments

Comments
 (0)