Collect Static
This commit is contained in:
parent
aba0dfae3f
commit
f47f392fc9
|
@ -15,9 +15,9 @@ html, body {
|
||||||
#target-main {
|
#target-main {
|
||||||
max-height: 0;
|
max-height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transition: max-height 0.3s ease;
|
transition: max-height 0.5s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
#target-main.shows {
|
#target-main.show {
|
||||||
max-height: 500px; /* Установите желаемую максимальную высоту */
|
max-height: 500px; /* Установите желаемую максимальную высоту */
|
||||||
}
|
}
|
||||||
|
|
|
@ -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.5s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
#target-main.show {
|
||||||
|
max-height: 500px; /* Установите желаемую максимальную высоту */
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue