Skip to content

Commit e85a3cf

Browse files
committed
Adjust the avatar size and list styling to match the design
1 parent 25b4784 commit e85a3cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/AccountDeleteButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const UserCard: React.FC<{
5050
username: string;
5151
}> = ({ mxid, displayName, username }) => (
5252
<section className="flex items-center p-4 gap-4 border border-[var(--cpd-color-gray-400)] rounded-xl">
53-
<Avatar id={mxid} name={displayName || username} size="48px" />
53+
<Avatar id={mxid} name={displayName || username} size="56px" />
5454
<div className="flex-1 flex flex-col">
5555
<Text type="body" weight="semibold" size="lg" className="text-primary">
5656
{displayName || username}
@@ -174,7 +174,7 @@ const AccountDeleteButton: React.FC<Props> = (props) => {
174174
i18nKey="frontend.account.delete_account.dialog_description"
175175
components={{
176176
text: <Text type="body" weight="regular" size="md" />,
177-
list: <ul className="list-disc list-inside pl-2" />,
177+
list: <ul className="list-disc list-outside pl-6" />,
178178
item: <Text as="li" type="body" weight="regular" size="md" />,
179179
profile: (
180180
<UserCard

0 commit comments

Comments
 (0)