alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: update account summary skeleton
author
pdelfan
date
2 months ago
(May 6, 2026, 5:38 PM -0700)
commit
c53051ca
c53051ca0f5c49f93b55d4da8a91c1be795056b6
parent
da210f07
da210f079ea011b4c5a6cdd25c52a609e2d9dba3
+13
-8
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
features
settings
components
accountSummary
Skeleton.AccountSummary.tsx
+13
-8
src/webapp/features/settings/components/accountSummary/Skeleton.AccountSummary.tsx
View file
Reviewed
···
1
1
-
import { Stack, Avatar, Skeleton } from '@mantine/core';
1
1
+
import { Card, Group, Stack, Skeleton } from '@mantine/core';
2
2
+
import classes from './AccountSummary.module.css';
2
3
3
4
export default function AccountSummarySkeleton() {
4
5
return (
5
5
-
<Stack align="center">
6
6
-
<Avatar size={'xl'} radius={'lg'} />
7
7
-
<Stack gap={'xs'} align="center">
8
8
-
<Skeleton w={100} h={28} />
9
9
-
<Skeleton w={80} h={18} />
10
10
-
</Stack>
11
11
-
</Stack>
6
6
+
<Card p={'sm'} radius={'lg'} classNames={{ root: classes.root }}>
7
7
+
<Group gap={'xs'}>
8
8
+
<Skeleton width={56} height={56} radius={'md'} />
9
9
+
<Stack gap={'xs'}>
10
10
+
<Stack gap={0}>
11
11
+
<Skeleton w={120} h={22} />
12
12
+
<Skeleton w={90} h={22} mt={4} />
13
13
+
</Stack>
14
14
+
</Stack>
15
15
+
</Group>
16
16
+
</Card>
12
17
);
13
18
}