Fix navbar
This commit is contained in:
parent
0d1a153fc8
commit
a6320082ac
|
@ -10,4 +10,14 @@ html, body {
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#target-main {
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
#target-main.show {
|
||||||
|
max-height: 500px; /* Установите желаемую максимальную высоту */
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue