mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
* Rename _faq_new.pug to _faq.pug Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add 2026 plans page FAQ templates Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Wire up quotes and FAQ section in plans_2026.pug Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update styles, quote component, and translations for 2026 plans page Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix missing accordion icon wrapper in last FAQ item Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fixup: rename `.card-pattern-sides` back to `.card-pattern` * Create SASS placeholder and mixin Suggested by Tim * Fixup quote style * Update spacings to match Figma --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> GitOrigin-RevId: 2f4e284038d79157d2b029a967918077bb206032
59 lines
1.4 KiB
SCSS
59 lines
1.4 KiB
SCSS
.ol-accordions-container .custom-accordion-item:last-of-type {
|
|
border: 0 !important;
|
|
}
|
|
|
|
.plans-2026 .ol-accordions-container .custom-accordion-item:last-of-type {
|
|
border-bottom: 1px solid var(--border-divider) !important;
|
|
}
|
|
|
|
.ol-accordions-container {
|
|
.custom-accordion-item {
|
|
width: 100%;
|
|
padding-top: var(--spacing-08);
|
|
padding-bottom: var(--spacing-09);
|
|
border-bottom: 1px solid var(--border-divider);
|
|
|
|
.custom-accordion-header {
|
|
text-align: left;
|
|
width: 100%;
|
|
font-size: var(--font-size-04);
|
|
font-weight: 600;
|
|
line-height: var(--line-height-03);
|
|
color: var(--content-primary);
|
|
background-color: unset;
|
|
border: unset;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: unset;
|
|
|
|
.custom-accordion-icon {
|
|
display: flex;
|
|
align-items: center;
|
|
transition: transform 0.35s ease;
|
|
margin-left: var(--spacing-08);
|
|
|
|
.material-symbols {
|
|
font-size: var(--font-size-06);
|
|
}
|
|
}
|
|
|
|
&:not(.collapsed) {
|
|
.custom-accordion-icon {
|
|
transform: rotate(180deg);
|
|
transition: transform 0.35s ease;
|
|
}
|
|
}
|
|
}
|
|
|
|
.custom-accordion-body {
|
|
@include body-base;
|
|
|
|
background-color: unset;
|
|
text-align: left;
|
|
padding: unset;
|
|
padding-right: 2rem;
|
|
margin-top: var(--spacing-04);
|
|
}
|
|
}
|
|
}
|