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

Feature/#127 탭 브라우징 피드백 반영 #129

Merged
merged 20 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
473da03
feat: 배경 이미지 해상도 변경
pipisebastian Nov 15, 2024
aca483a
Merge branch 'Feature/#119_모달_공통_컴포넌트_구현' of https://github.com/boost…
pipisebastian Nov 15, 2024
e30425d
feat: menu button 흰색 배경 추가
pipisebastian Nov 15, 2024
e566a00
feat: svg 파일 추가
pipisebastian Nov 16, 2024
b0a7fff
chore: svgr 플러그인 설정
pipisebastian Nov 16, 2024
308115e
refactor: 페이지 타이틀 반응형 적용
pipisebastian Nov 16, 2024
14a7f98
refactor: 페이지 이동 애니메이션 마우스 따라가도록 수정
pipisebastian Nov 16, 2024
3d4ac43
feat: 모달 애니메이션 추가
pipisebastian Nov 16, 2024
052bebb
feat: 최소화, 최대화, 창닫기 버튼 아이콘 추가 및 순서 변경
pipisebastian Nov 16, 2024
aafc551
refactor: 사이드바 반응형 추가
pipisebastian Nov 16, 2024
a458d52
feat: 좌표 초기화 함수 구현 및 return 타입 제거
pipisebastian Nov 16, 2024
384e959
refactor: 타입 수정
pipisebastian Nov 16, 2024
beb608d
feat: 최대 보여줄 수 있는 페이지 상수 추가
pipisebastian Nov 16, 2024
9b437c5
refactor: import 순서 정렬
pipisebastian Nov 16, 2024
1778ada
Merge branch 'dev' of https://github.com/boostcampwm-2024/web33-Nocta…
pipisebastian Nov 16, 2024
22299ac
feat: pnpm lock 추가
pipisebastian Nov 16, 2024
1c33455
feat: 10개 페이지 초과시 모달창 추가
pipisebastian Nov 16, 2024
7d62760
refactor: 모달창 문구 수정
pipisebastian Nov 17, 2024
7d3fd54
refactor: x 스크롤 안보이도록
pipisebastian Nov 17, 2024
1f153ec
feat: 스크롤바 webkit 디자인 적용
pipisebastian Nov 17, 2024
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
5 changes: 5 additions & 0 deletions client/src/components/sidebar/PageItem.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const pageItemContainer = css({
gap: "sm",
alignItems: "center",
width: "100%",
height: "56px",
paddingInline: "md",
"&:hover": {
background: "white/50",
Expand All @@ -14,6 +15,7 @@ export const pageItemContainer = css({

export const iconBox = css({
display: "flex",
flexShrink: 0,
justifyContent: "center",
alignItems: "center",
borderRadius: "xs",
Expand All @@ -26,4 +28,7 @@ export const iconBox = css({
export const textBox = css({
textStyle: "display-medium20",
color: "gray.700",
textOverflow: "ellipsis",
overflow: "hidden",
whiteSpace: "nowrap",
});
2 changes: 2 additions & 0 deletions client/src/components/sidebar/Sidebar.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ export const navWrapper = css({
gap: "md",
flexDirection: "column",
width: "100%",
overflowY: "scroll",
Copy link
Collaborator

Choose a reason for hiding this comment

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

page가 잠깐 생길때 x축에도 스크롤이 발생하네요.
x축 스크롤은 안보이는게 처리하는게 좋을까요?

Copy link
Member Author

Choose a reason for hiding this comment

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

오 좋은 것 같습니다!! 수정하겠습니다!

});

export const plusIconBox = css({
display: "flex",
justifyContent: "start",
marginBlock: "10px",
paddingInline: "md",
});

Expand Down
Loading