Compare commits

..

2 Commits

Author SHA1 Message Date
itqop fc5e77caf0 Merge branch 'main' of https://git.itqop.pw/itqop/rumine-web 2024-03-18 00:01:16 +03:00
itqop a6320082ac Fix navbar 2024-03-18 00:01:00 +03:00
1 changed files with 11 additions and 1 deletions

View File

@ -10,4 +10,14 @@ html, body {
}
.content {
flex: 1;
}
}
#target-main {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
#target-main.show {
max-height: 500px; /* Установите желаемую максимальную высоту */
}