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