Skip to content

Commit

Permalink
Merge pull request #5 from 5upermario/master
Browse files Browse the repository at this point in the history
add overflow-x: auto to view container
  • Loading branch information
knsv authored Jan 11, 2020
2 parents 5d4364f + ee3b918 commit c91762c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/View.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,14 @@ let insertSvg = function(svgCode, bindFunctions){
border: 1px solor darkred;
flex: 1;
}
#container {
overflow-x: auto;
}
.error {
opacity: 0.5;
}
</style>

<div id="view" class="{codeClasses} {configClasses}">
<div id="container" bind:this={container}></div>
</div>
</div>

0 comments on commit c91762c

Please sign in to comment.