@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 +1 -1
- package/src/styles/global.css +11 -1
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -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:
|
|
794
|
+
align-items: center; /* 🔑 THIS LINE */
|
|
785
795
|
justify-content: space-between;
|
|
786
796
|
}
|
|
787
797
|
|