@ansiversa/components 0.0.23 → 0.0.25

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.23",
3
+ "version": "0.0.25",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -407,6 +407,16 @@
407
407
  @apply w-full justify-center;
408
408
  }
409
409
 
410
+ .av-btn-primary:disabled,
411
+ .av-btn-ghost:disabled,
412
+ .av-btn-outline:disabled {
413
+ opacity: 0.5;
414
+ cursor: not-allowed;
415
+ pointer-events: none;
416
+ transform: none;
417
+ box-shadow: none;
418
+ }
419
+
410
420
  /* Forms ------------------------------------------------- */
411
421
 
412
422
  .av-form-group {
@@ -781,7 +791,7 @@
781
791
  @media (min-width: 640px) {
782
792
  .av-page-header__top {
783
793
  flex-direction: row;
784
- align-items: flex-start;
794
+ align-items: center; /* 🔑 THIS LINE */
785
795
  justify-content: space-between;
786
796
  }
787
797