global accordeon css scope handling

This commit is contained in:
Antoine M 2023-12-13 16:30:41 +01:00
parent bd83a48608
commit e3c652d072
2 changed files with 13 additions and 0 deletions

View File

@ -30,6 +30,7 @@
@import './components/thematiques-faq-filters.css';
@import './components/checkboxes.css';
@import './components/search-results.css';
@import './components/accordeons.css';
@import '../../template-components/cards/card-news.css';
@import '../../template-components/cards/card-frequent_question.css';

View File

@ -0,0 +1,12 @@
.homegrade-dynamic-accordeon {
&__content-wrapper {
@apply overflow-hidden;
transition: height 0.3s ease-in-out;
}
&__content {
@apply pt-8;
*:first-child {
@apply !mt-0;
}
}
}