Skip to content

Commit

Permalink
fix Resume contact button bugs (#82)
Browse files Browse the repository at this point in the history
* fix: Resume contact button order

* fix: following shadow color to primary color

* design: moving resume contact button
  • Loading branch information
hyesungoh authored Jul 4, 2022
1 parent 5ebdf9b commit fcbc37e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/resume/src/components/ContactButton/ContactButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const Div = styled.div`
right: 2rem;
@media ${config.media.xsMax} {
bottom: 0.5rem;
right: 0.75rem;
bottom: 1rem;
right: 1.25rem;
}
`;

Expand Down
2 changes: 1 addition & 1 deletion apps/resume/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export default function ResumeApp({ Component, pageProps }: AppProps) {
<KBarProvider actions={generateKbarAction()}>
<Title />
<KbarComponent />
<ContactButton />
<Component {...pageProps} />
<ContactButton />
</KBarProvider>
</NextUIProvider>
</NextThemesProvider>
Expand Down
1 change: 1 addition & 0 deletions packages/core/styles/theme/darkTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const darkTheme = createTheme({
selection: getColor(darkSelection, theme.colors.selection.value),
code: getColor(darkCode, theme.colors.code.value),
codeLight: getColor(darkCodeLight, theme.colors.codeLight.value),
primaryShadow: getColor(darkPrimary, theme.colors.primary.value),
},
},
});

2 comments on commit fcbc37e

@vercel
Copy link

@vercel vercel bot commented on fcbc37e Jul 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

comet-land-resume – ./apps/resume

comet-land-resume-hyesungoh.vercel.app
comet-land-resume.vercel.app
comet-land-resume-git-main-hyesungoh.vercel.app

@vercel
Copy link

@vercel vercel bot commented on fcbc37e Jul 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

comet-land-blog – ./apps/blog

comet-land-blog-hyesungoh.vercel.app
comet-land-blog-git-main-hyesungoh.vercel.app
comet-land-blog.vercel.app

Please sign in to comment.