@ansiversa/components 0.0.162 → 0.0.163

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.162",
3
+ "version": "0.0.163",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -815,16 +815,32 @@
815
815
  .av-profile-row {
816
816
  display: flex;
817
817
  flex-direction: column;
818
- align-items: flex-start;
818
+ align-items: center;
819
819
  gap: 1rem;
820
820
  }
821
821
 
822
+ .av-profile-row > div {
823
+ width: 100%;
824
+ }
825
+
826
+ .av-profile-row .av-card-heading {
827
+ text-align: center;
828
+ }
829
+
822
830
  @media (min-width: 768px) {
823
831
  .av-profile-row {
824
832
  flex-direction: row;
825
833
  align-items: center;
826
834
  gap: 1.5rem;
827
835
  }
836
+
837
+ .av-profile-row > div {
838
+ width: auto;
839
+ }
840
+
841
+ .av-profile-row .av-card-heading {
842
+ text-align: left;
843
+ }
828
844
  }
829
845
 
830
846
  .av-avatar-lg {