-
Hi, is there a way to create an accordion like this : https://picocss.com/docs/accordions.html ? Thanks for your help 😁 |
Beta Was this translation helpful? Give feedback.
Answered by
adm-crow
Apr 26, 2023
Replies: 1 comment
-
I found my way with a code like this : <details class="has-mb-2">
<summary class="is-flex is-rounded has-justify-between has-items-center has-p-4 has-text-light has-bg-dark">
<span>Group 1</span>
<i class="si-plus-circle has-size-2 has-ml-2"></i>
</summary>
<p>Lorem ipsum dolor sit amet...</p>
</details> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adm-crow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found my way with a code like this :