Accordion - center middle the text in the rows - center accordion
Good for very long questions that run to 2 or more lines.
Add the CSS to the page as it stops the title in the panel element from centering.
/*force the title into the middle of the row. */
accordion
.el-title {
display: flex;
align-items: center;
}
.el-title {
margin:0 auto;
}
- Hits: 9