@ansiversa/components 0.0.161 → 0.0.162
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 -2
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -814,8 +814,17 @@
|
|
|
814
814
|
|
|
815
815
|
.av-profile-row {
|
|
816
816
|
display: flex;
|
|
817
|
-
|
|
818
|
-
|
|
817
|
+
flex-direction: column;
|
|
818
|
+
align-items: flex-start;
|
|
819
|
+
gap: 1rem;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
@media (min-width: 768px) {
|
|
823
|
+
.av-profile-row {
|
|
824
|
+
flex-direction: row;
|
|
825
|
+
align-items: center;
|
|
826
|
+
gap: 1.5rem;
|
|
827
|
+
}
|
|
819
828
|
}
|
|
820
829
|
|
|
821
830
|
.av-avatar-lg {
|