Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] 캘린더 공유 기능 버그 수정 #31

Merged
merged 2 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions public/arcticons_kakaotalk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>WWWM</title>
<script src="https://t1.kakaocdn.net/kakao_js_sdk/2.7.4/kakao.min.js" integrity="sha384-DKYJZ8NLiK8MN4/C5P2dtSmLQ4KwPaoqAfyA/DfmEc1VDxu4yyC7wy6K1Hs90nka" crossorigin="anonymous"></script>
<meta property="og:title" content="언제볼까?" />
<meta property="og:description" content="그래서 우리, 언제 볼까요?" />
<meta property="og:image" content="https://ifh.cc/v-ccKapj" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
3 changes: 3 additions & 0 deletions public/tabEdge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/tabler_link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 22 additions & 2 deletions src/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const ButtonVariants = cva(
`
flex justify-center items-center active:scale-95 rounded-xl
text-slate-100 transition-all
hover:scale-105 duration-200 hover:translate-x-10
hover:scale-105 duration-200
`,
{
//variant , size에 따라 다른 디자인을 보여줄수 있다
Expand Down Expand Up @@ -186,7 +186,27 @@ export const ButtonVariants = cva(
`text-[var(--white)]`,
'hover:transform-none',
'hover:none'
]
],
share: //카카오톡으로 공유하기, 링크 복사하기
[ //default는 카카오톡으로 설정했음음
'flex',
'pl-[16px]',
'w-[312px]',
'h-[44px]',
'py-[14px]',
'!justify-start',
'items-center',
'!whitespace-nowrap ',
'!text-center',
'gap-[4px]',
'rounded-[8px]',
'border',
'bg-[var(--gray-900)]',
'whitespace-normal',
typographyVariants({ variant: 'b2-md' }),
'text-[var(--white)]'

],
},
},
defaultVariants: {
Expand Down
58 changes: 0 additions & 58 deletions src/components/copyToClipBoard.ts

This file was deleted.

53 changes: 0 additions & 53 deletions src/components/share.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/hooks/index.ts

This file was deleted.

20 changes: 0 additions & 20 deletions src/hooks/useUserAgent.js

This file was deleted.

Loading