Fix navbar

This commit is contained in:
itqop 2024-03-18 00:01:00 +03:00
parent 0d1a153fc8
commit a6320082ac
1 changed files with 11 additions and 1 deletions

View File

@ -11,3 +11,13 @@ 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; /* Установите желаемую максимальную высоту */
}