diff --git a/src/pages/Profile/Profile.js b/src/pages/Profile/Profile.js index f4f366a..27ec245 100644 --- a/src/pages/Profile/Profile.js +++ b/src/pages/Profile/Profile.js @@ -50,13 +50,23 @@ export const Profile = observer(() => { }, ] + const styleSaldoTitle = store.ui.mediaQuery.isDesktop ? { + display: "flex", + justifyContent: "center" + } : {fontSize: "0.75rem"}; + const styleSaldoContent = store.ui.mediaQuery.isDesktop ? { + fontSize: '1.25rem', + display: "flex", + justifyContent: "center" + } : null; + return (
Profile - + Name @@ -90,11 +100,15 @@ export const Profile = observer(() => { - -
- Saldo - {store.authentication.profileData?.wallet} -
+ + + + Saldo + + + {store.authentication.profileData?.wallet} + +