@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 +1 -1
- package/src/styles/global.css +17 -1
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -815,16 +815,32 @@
|
|
|
815
815
|
.av-profile-row {
|
|
816
816
|
display: flex;
|
|
817
817
|
flex-direction: column;
|
|
818
|
-
align-items:
|
|
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 {
|