We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee4598d commit 4cd2c21Copy full SHA for 4cd2c21
docs/generator/index.in.html
@@ -62,7 +62,7 @@
62
63
<div id="page-0" class="page">
64
<div id='vizzu-view'>
65
- <div id='vizzu-canvas'></div>
+ <canvas id='vizzu-canvas'></canvas>
66
</div>
67
<div id='content'></div>
68
docs/style/tutorial.css
@@ -46,7 +46,7 @@ th {
46
47
#vizzu-view {
48
width: 100%;
49
- height: 260px;
+ height: calc( min(100vw,480px) / 480 * 260);
50
overflow: none;
51
display: block;
52
position: sticky;
@@ -121,8 +121,9 @@ th {
121
}
122
123
#vizzu-canvas {
124
- width: 480px;
125
+ width: 100vw;
+ max-width: 480px;
126
127
background-color: #fff;
128
z-index: 100;
129
filter: drop-shadow(0 2px 4px #e0dcda);
0 commit comments