Collect Static

This commit is contained in:
itqop 2024-03-18 00:35:26 +03:00
parent 2a8e260750
commit ae1731593f
5 changed files with 39 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

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

View File

@ -12,12 +12,15 @@ html, body {
flex: 1; flex: 1;
} }
#target-main { @media (max-width: 992px) {
max-height: 0; #target-main {
overflow: hidden; max-height: 0;
transition: max-height 0.5s ease; overflow: hidden;
transition: max-height 0.5s ease;
}
#target-main.show {
max-height: 500px; /* Установите желаемую максимальную высоту */
}
} }
#target-main.show {
max-height: 500px; /* Установите желаемую максимальную высоту */
}

File diff suppressed because one or more lines are too long