@ansiversa/components 0.0.35 → 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.35",
3
+ "version": "0.0.36",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -210,6 +210,24 @@
210
210
  display: none;
211
211
  }
212
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
+
213
231
  .av-page {
214
232
  @apply min-h-screen flex flex-col;
215
233
  }