@ansiversa/components 0.0.34 → 0.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -196,6 +196,38 @@
196
196
  @layer components {
197
197
  /* Layout ------------------------------------------------ */
198
198
 
199
+ /* FAQ */
200
+ .av-faq-summary {
201
+ display: flex;
202
+ align-items: center;
203
+ gap: var(--av-space-sm);
204
+ cursor: pointer;
205
+ list-style: none;
206
+ }
207
+
208
+ /* Remove default arrow */
209
+ .av-faq-summary::-webkit-details-marker {
210
+ display: none;
211
+ }
212
+
213
+ /* Optional arrow icon */
214
+ .av-faq-summary::before {
215
+ content: "›";
216
+ transform: rotate(0deg);
217
+ transition: transform 0.2s ease;
218
+ }
219
+
220
+ details[open] .av-faq-summary::before {
221
+ transform: rotate(90deg);
222
+ }
223
+
224
+ .av-faq-question {
225
+ flex: 1;
226
+ font-weight: 700;
227
+ font-size: 1.05rem;
228
+ line-height: 1.4;
229
+ }
230
+
199
231
  .av-page {
200
232
  @apply min-h-screen flex flex-col;
201
233
  }