@ansiversa/components 0.0.37 → 0.0.38

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.37",
3
+ "version": "0.0.38",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -203,6 +203,7 @@
203
203
  gap: var(--av-space-sm);
204
204
  cursor: pointer;
205
205
  list-style: none;
206
+ flex-wrap: wrap;
206
207
  }
207
208
 
208
209
  /* Remove default arrow */
@@ -225,12 +226,20 @@
225
226
  }
226
227
 
227
228
  .av-faq-question {
228
- flex: 1;
229
+ flex: 1 1 240px;
229
230
  font-weight: 700;
230
231
  font-size: 1.05rem;
231
232
  line-height: 1.4;
232
233
  }
233
234
 
235
+ .av-faq-actions {
236
+ flex: 1 1 100%;
237
+ display: flex;
238
+ gap: 0.5rem;
239
+ flex-wrap: wrap;
240
+ justify-content: flex-start;
241
+ }
242
+
234
243
  .av-page {
235
244
  @apply min-h-screen flex flex-col;
236
245
  }