Skip to content

Commit 6173f2f

Browse files
style: clean up profile page
1 parent 21b78af commit 6173f2f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/Profile/GameList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,8 @@ export const GameList = ({
431431
}
432432

433433
return (
434-
<div className="from-white/8 to-white/4 flex w-full flex-col overflow-hidden rounded-lg border border-white/20 bg-gradient-to-br backdrop-blur-md md:w-[600px]">
435-
<div className="flex flex-row items-center justify-start gap-4 border-b border-white/10 bg-white/5 px-2 py-2 md:px-4">
434+
<div className="flex w-full flex-col overflow-hidden rounded-md border border-glassBorder bg-glass md:w-[600px]">
435+
<div className="flex flex-row items-center justify-start gap-4 px-2 py-2 md:px-4">
436436
<span className="material-symbols-outlined !text-2xl text-red-500">
437437
sports_esports
438438
</span>

src/components/Profile/ProfileColumn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const ProfileColumn: React.FC<Props> = ({ icon, name, data }: Props) => {
2020
const losses = data.losses ?? data.games - data.wins - (data?.draws || 0)
2121

2222
return (
23-
<div className="from-white/8 to-white/4 flex w-full flex-col gap-3 overflow-hidden rounded-lg border border-white/20 bg-white/5 bg-gradient-to-br backdrop-blur-md">
23+
<div className="flex w-full flex-col gap-3 overflow-hidden rounded-md border border-glassBorder bg-glass">
2424
<div className="flex flex-row items-center justify-start gap-2 px-4 pt-3">
2525
<span className="material-symbols-outlined material-symbols-filled text-xl text-primary/80 md:!text-3xl">
2626
{icon}

0 commit comments

Comments
 (0)