mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2025-10-28 20:45:35 -05:00
38 lines
497 B
SCSS
38 lines
497 B
SCSS
@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
|
|
}
|