Collect Static

This commit is contained in:
itqop 2024-03-18 00:01:52 +03:00
parent fc5e77caf0
commit 765315ac46
3 changed files with 35 additions and 2 deletions

View File

@ -0,0 +1,23 @@
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.wrapper {
min-height: 100%;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
}
#target-main {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
#target-main.show {
max-height: 500px; /* Установите желаемую максимальную высоту */
}

View File

@ -11,3 +11,13 @@ html, body {
.content {
flex: 1;
}
#target-main {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
#target-main.show {
max-height: 500px; /* Установите желаемую максимальную высоту */
}

File diff suppressed because one or more lines are too long