diff --git a/home/static/css/template.css b/home/static/css/template.css index 6994507..d75b93f 100644 --- a/home/static/css/template.css +++ b/home/static/css/template.css @@ -10,4 +10,14 @@ html, body { } .content { flex: 1; -} \ No newline at end of file +} + +#target-main { + max-height: 0; + overflow: hidden; + transition: max-height 0.3s ease; +} + +#target-main.show { + max-height: 500px; /* Установите желаемую максимальную высоту */ +}