Collect Static
This commit is contained in:
parent
2a8e260750
commit
ae1731593f
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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; /* Установите желаемую максимальную высоту */
|
||||
}
|
||||
}
|
||||
|
|
@ -12,6 +12,7 @@ html, body {
|
|||
flex: 1;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
#target-main {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
|
@ -21,3 +22,5 @@ html, body {
|
|||
#target-main.show {
|
||||
max-height: 500px; /* Установите желаемую максимальную высоту */
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue