Files
5etools-mirror-2.github.io/scss/renderdemo.scss
TheGiddyLimit 12f34a38f8 v1.202.0
2024-03-24 23:47:02 +00:00

38 lines
511 B
SCSS

@use "includes/vars";
#jsoninput {
width: 100%;
height: 100%;
}
#wrp-output {
overflow-y: scroll;
margin-bottom: 28px;
height: calc(100% - 35px);
}
#demoSelectRenderer {
width: 200px;
}
@media screen and (width <= #{vars.$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
}