File tree Expand file tree Collapse file tree
src/ui/screens/profile-screen/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import React , { useState } from 'react' ;
22import { VBox , HBox } from "@/ui/shared-components/LayoutBoxes" ;
3- import { Typography } from "@mui/material" ;
3+ import { Box , Typography } from "@mui/material" ;
44import useTranslation from "@/ui/language/useTranslation" ;
55import theme from "@/theme" ;
66import RegularButton from '@/ui/shared-components/buttons/RegularButton' ;
@@ -35,10 +35,13 @@ const ProfileDataList = () => {
3535 } }
3636 justifyContent = { 'center' }
3737 >
38- < HBox sx = { {
38+ < Box sx = { {
39+ display : 'flex' ,
40+ flexDirection : { xs : 'column' , sm : 'row' } ,
3941 justifyContent : 'space-between' ,
4042 alignItems : 'flex-start' ,
41- flexWrap : 'wrap'
43+ flexWrap : 'wrap' ,
44+ gap : 2 ,
4245 } } >
4346 < VBox >
4447 < Typography variant = 'body2' >
@@ -67,7 +70,7 @@ const ProfileDataList = () => {
6770 }
6871
6972 </ VBox >
70- </ HBox >
73+ </ Box >
7174 {
7275 featureFlags . profileUpdates && open === index && datafieldDetails && (
7376 < ProfileUpdateField
You can’t perform that action at this time.
0 commit comments