Skip to content

Commit

Permalink
feat: add backstage part
Browse files Browse the repository at this point in the history
  • Loading branch information
SnowballXueQiu committed Aug 15, 2024
1 parent f9b98c2 commit d55a2f9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
9 changes: 9 additions & 0 deletions app/backstage/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use client';

export default function BackStage() {
return (
<>
<h1>Test</h1>
</>
);
}
8 changes: 4 additions & 4 deletions app/oauth/callback/components/UserInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export default function UserInfoCard(props: UserInfoCardProps) {
<Card.Section>
<br />
<Center
w={300}
h={"auto"}
w={300}
h="auto"
>
<Avatar
src = {avatar_url}
size = "8rem"
src={avatar_url}
size="8rem"
/>
</Center>
</Card.Section>
Expand Down
5 changes: 2 additions & 3 deletions app/oauth/components/LoginBanner.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@

.title {
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
font-family:
Greycliff CF,
var(--mantine-font-family);
font-family: "Greycliff CF",
var(--mantine-font-family), serif;
line-height: 1;
margin-bottom: var(--mantine-spacing-md);
}
Expand Down

0 comments on commit d55a2f9

Please sign in to comment.