rumine-web/static/css/template.css

24 lines
397 B
CSS
Raw Normal View History

2024-03-17 18:19:18 +01:00
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.wrapper {
min-height: 100%;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
2024-03-17 22:01:52 +01:00
}
#target-main {
max-height: 0;
overflow: hidden;
2024-03-17 22:14:13 +01:00
transition: max-height 0.5s ease;
2024-03-17 22:01:52 +01:00
}
2024-03-17 22:14:13 +01:00
#target-main.show {
2024-03-17 22:01:52 +01:00
max-height: 500px; /* Установите желаемую максимальную высоту */
}