Files
old-riskletpy/backend/core/static/css/base.css

21 lines
711 B
CSS
Raw Normal View History

2025-06-17 10:37:46 +02:00
html {
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
padding-top: 0; /* Ensures this is the initial state for vertical padding */
padding-bottom: 0; /* Ensures this is the initial state for vertical padding */
}
.accordion-item.active .accordion-content {
max-height: 3000px; /* Increased max-height for potentially long content */
padding-top: 1rem; /* Applied when active */
padding-bottom: 1.5rem; /* Applied when active */
}
.accordion-item.active .accordion-chevron {
transform: rotate(180deg);
}