-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: more(...) 이미지 DefaultChip 사용해서 나타내기 / 매직넘버 변수로 교체 (#104)
* Refactor: Position과 Stack에서 more(...) 이미지인 경우 DefaultChip 사용하기 * Refactor: 반응형 칩 개수 구하는 로직에서 매직넘버 대신 변수 사용 / 로직 구조화
- Loading branch information
1 parent
4d6249c
commit 167f5c8
Showing
6 changed files
with
57 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const POSITION_CHIP_LIMIT = { | ||
home: { mobile: 2, tablet: 3, desktopNarrow: 4, desktopWide: 2 }, | ||
studyList: { mobile: 2, tablet: 3, desktopNarrow: 3, desktopWide: 2 }, | ||
}; | ||
|
||
export const STACK_CHIP_LIMIT = { mobile: 5, tablet: 5, desktopNarrow: 5, desktopWide: 4 }; |