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

Feat: 히스토리 페이지 Ver3.0 #271

Merged
merged 7 commits into from
Nov 1, 2024
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
10 changes: 10 additions & 0 deletions public/icons/new/clock.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/icons/new/delete.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/icons/new/eye.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/icons/new/eye_slash.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions public/icons/new/kebab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/images/no_data_image.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/account/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';
import { useRouter } from 'next/navigation';
import useBooleanOutput from '@/hooks/useBooleanOutput';
import Header from '@/components/Header/Header';
import Header from '@/components/Header/__Header';
import useMoveToPage from '@/hooks/useMoveToPage';

import NavigateIcon from '/public/icons/chevron_right.svg';
Expand Down
2 changes: 1 addition & 1 deletion src/app/account/profile/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import toastMessage from '@/lib/constants/toastMessage';
import { useUser } from '@/store/useUser';
import getUserOne from '@/app/_api/user/getUserOne';
import updateProfile from '@/app/_api/user/updateProfile';
import Header from '@/components/Header/Header';
import Header from '@/components/Header/__Header';
import BlueButton from '@/components/BlueButton/BlueButton';

import ProfileForm from './_components/ProfileForm';
Expand Down
2 changes: 1 addition & 1 deletion src/app/account/withdraw/_component/WithdrawalHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';
import { useRouter } from 'next/navigation';
import Header from '@/components/Header/Header';
import Header from '@/components/Header/__Header';
import { accountLocale } from '@/app/account/locale';
import { useLanguage } from '@/store/useLanguage';

Expand Down
2 changes: 1 addition & 1 deletion src/app/collection/_[category]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { useRouter, useParams } from 'next/navigation';

import Header from '@/components/Header/Header';
import Header from '@/components/Header/__Header';
import * as styles from './page.css';
import { useInfiniteQuery, useQueryClient } from '@tanstack/react-query';
import { QUERY_KEYS } from '@/lib/constants/queryKeys';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Collaborators from '@/app/list/[listId]/_components/ListDetailOuter/Colla
import getListDetail from '@/app/_api/list/getListDetail';
import Label from '@/components/Label/Label';
import Modal from '@/components/Modal/Modal';
import Header from '@/components/Header/Header';
import Header from '@/components/Header/__Header';
import HeaderRight from './HeaderRight';
import Comments from './Comments';
import { useUser } from '@/store/useUser';
Expand Down
24 changes: 17 additions & 7 deletions src/app/list/[listId]/history/_component/HistoryGraph.css.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
import { style } from '@vanilla-extract/css';
import { vars } from '@/styles/__theme.css';
import * as fonts from '@/styles/__font.css';
import { vars } from '@/styles/theme.css';

export const container = style({
overflowX: 'scroll',
overflowY: 'hidden',
width: '100%',
minWidth: 'calc(200vw - 54px)',
height: '345px',
padding: '20px',
height: '520px',
paddingBottom: '60px',

display: 'flex',
alignItems: 'center',

borderRadius: '20px',
backgroundColor: vars.color.white,
boxShadow: '0px 4px 20px 0px rgba(0, 0, 0, 0.10)',

selectors: {
'&::-webkit-scrollbar': {
height: '5px',
background: vars.color.bggray,
borderRadius: '6px',
},
'&::-webkit-scrollbar-thumb': {
backgroundColor: vars.color.lightgray,
borderRadius: '6px',
},
},
Comment on lines +15 to +26
Copy link
Contributor

Choose a reason for hiding this comment

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

스크롤바 디자인까지✨ 완전 디테일!!

});
Loading