This commit is contained in:
2026-01-22 12:26:02 +05:45
parent 6df68a626e
commit f7bb97ed64
6 changed files with 76 additions and 55 deletions

View File

@@ -37764,7 +37764,31 @@ section {
transform: translateY(-2px);
/* slight lift effect */
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
border-color: var(--color-btn) ;
border-color: var(--color-btn);
}
.band {
background-color: white;
padding: 20px;
border-radius: 8px;
}
.faq-group {
overflow: hidden;
opacity: 0;
transform: translateY(30px);
transition: all 0.35s ease;
pointer-events: none;
}
.faq-group.show {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.faq-group.d-none {
display: none !important;
}
.band-info h4 {

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB