-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat: 트렌딩 리스트 api 연결 * Feat: 이 주제로 만들어주세요 api 연결 * Chore: 추천 리스트 css 파일명 변경 * Fix: topic api 연동 type 수정 및 사용자 추천 로직 개선 * Feat: 검색바 구현 * Style: 필요없는 코드 정리 * Fix: 코드리뷰 반영 * Fix: 불필요한 Link 태그 제거 * Fix: ci 에러 해결
- Loading branch information
1 parent
15e6086
commit c91bf53
Showing
34 changed files
with
4,683 additions
and
4,947 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
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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,35 @@ | ||
import { style } from '@vanilla-extract/css'; | ||
|
||
export const wrapper = style({ | ||
width: '100%', | ||
|
||
display: 'flex', | ||
alignItems: 'center', | ||
}); | ||
|
||
export const inputWrapper = style({ | ||
width: '100%', | ||
|
||
display: 'flex', | ||
alignItems: 'center', | ||
}); | ||
|
||
export const input = style({ | ||
width: '100%', | ||
|
||
fontSize: '1.6rem', | ||
overflow: 'hidden', | ||
'::placeholder': { | ||
color: '#637587', | ||
fontWeight: '400', | ||
fontSize: '1.6rem', | ||
}, | ||
}); | ||
|
||
export const cancelButton = style({ | ||
flexShrink: 0, | ||
fontWeight: '400', | ||
fontSize: '1.6rem', | ||
letterSpacing: '-3%', | ||
color: '#213752', | ||
}); |
Oops, something went wrong.