Changeset 4ceb725


Ignore:
Timestamp:
03/01/26 20:27:45 (4 months ago)
Author:
Mihail <mihail2.naumov@…>
Branches:
main
Children:
1d7e8fe
Parents:
ad3c219
Message:

Fixed small margin errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pages/dashboard/user/+Page.tsx

    rad3c219 r4ceb725  
    205205                            }}>
    206206                                {data.userBuilds.slice(0, 6).map((build: any) => (
    207                                     <Box key={build.id} sx={{ display: 'flex', flexDirection: 'column' }}>
     207                                    <Box key={build.id} sx={{ display: 'flex', flexDirection: 'column', pb: 2 }}>
    208208                                        <Box sx={{ flexGrow: 1 }}>
    209209                                            <BuildCard
     
    251251                        },
    252252                        gap: 2,
    253                         mt: 1
     253                        mt: 1,
    254254                    }}>
    255255                        {data.userBuilds.map((build: any) => (
    256                             <Box key={build.id}>
     256                            <Box key={build.id} sx={{ pb: 4 }}>
    257257                                <BuildCard
    258258                                    build={build}
Note: See TracChangeset for help on using the changeset viewer.