mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
29 lines
640 B
SCSS
29 lines
640 B
SCSS
.questions-and-answers {
|
|
width: 100%;
|
|
}
|
|
.questions-and-answers__item:not(:last-child) {
|
|
border-bottom: 1px solid #d1d5db;
|
|
}
|
|
.questions-and-answers__header {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
padding: 0.5rem;
|
|
}
|
|
.questions-and-answers__toggle {
|
|
margin-right: 0.25rem;
|
|
}
|
|
.questions-and-answers__title {
|
|
flex: 1;
|
|
}
|
|
.questions-and-answers__content {
|
|
padding: 0 0.5rem;
|
|
}
|
|
|
|
.questions-and-answers__item--collapsed .questions-and-answers__content {
|
|
display: none;
|
|
}
|
|
.questions-and-answers__item--expanded .questions-and-answers__content {
|
|
display: block;
|
|
} |