@ansiversa/components 0.0.38 → 0.0.39

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.38",
3
+ "version": "0.0.39",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -203,7 +203,6 @@
203
203
  gap: var(--av-space-sm);
204
204
  cursor: pointer;
205
205
  list-style: none;
206
- flex-wrap: wrap;
207
206
  }
208
207
 
209
208
  /* Remove default arrow */
@@ -226,18 +225,29 @@
226
225
  }
227
226
 
228
227
  .av-faq-question {
229
- flex: 1 1 240px;
228
+ flex: 1 1 auto;
230
229
  font-weight: 700;
231
230
  font-size: 1.05rem;
232
231
  line-height: 1.4;
233
232
  }
234
233
 
235
234
  .av-faq-actions {
236
- flex: 1 1 100%;
237
235
  display: flex;
238
236
  gap: 0.5rem;
239
- flex-wrap: wrap;
240
- justify-content: flex-start;
237
+ align-items: center;
238
+ flex: 0 0 auto;
239
+ }
240
+
241
+ @media (max-width: 640px) {
242
+ .av-faq-summary {
243
+ flex-wrap: wrap;
244
+ }
245
+
246
+ .av-faq-actions {
247
+ flex: 1 1 100%;
248
+ justify-content: flex-end;
249
+ margin-top: 0.25rem;
250
+ }
241
251
  }
242
252
 
243
253
  .av-page {