documentation page

This commit is contained in:
SBD
2024-07-16 13:28:14 +03:00
parent 309bec8d77
commit 1df287c122
4 changed files with 41 additions and 36 deletions

View File

@@ -65,7 +65,7 @@
}
.tree_documentation_container {
width: unset;
height: 100vh;
height: calc(100vh - 172px);
overflow-y: auto;
padding: 0 15px;

View File

@@ -99,6 +99,7 @@ function setInfInCurtainDocumentationMobile () {
}
function openDocCurtainMobile () {
$("body").css({'overflow':'hidden'})
let $curtain = $(".left_curtain_documentation")
let $block_overlay = $(".block_overlay")
$curtain.css({left:0})
@@ -108,6 +109,7 @@ function openDocCurtainMobile () {
}
function closeDocCurtainMobile () {
$("body").css({'overflow':'unset'})
let $curtain = $(".left_curtain_documentation")
let $block_overlay = $(".block_overlay")
$curtain.css({left:'-320px'})