This commit is contained in:
TheGiddyLimit
2024-01-01 19:34:49 +00:00
parent 332769043f
commit 8117ebddc5
1748 changed files with 2544409 additions and 1 deletions

37
scss/renderdemo.scss Normal file
View File

@@ -0,0 +1,37 @@
@import "includes/vars";
#jsoninput {
width: 100%;
height: 100%;
}
#wrp-output {
overflow-y: scroll;
margin-bottom: 28px;
height: calc(100% - 35px);
}
#demoSelectRenderer {
width: 200px;
}
@media (max-width: $width-screen-md) {
#wrp-jsoninput {
height: 480px;
}
}
@media print {
#wrp-output {
display: block;
height: unset;
overflow: unset;
margin: 0;
}
// region Hack to ensure the table appears on the first page
#pagecontent {
margin-top: -2px;
}
// endregion
}