-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* [FIX] Mcoock API 수정 * [Style] 토너먼트 신청 버튼#1128 * [Style] 버튼 패딩 크기 수정#1128 * [Style] 그카드 그림자 추가 #1128 * [FIX] 토너먼트 페이지 인피니티 스크롤 제거 #1128 * [FIX] 토너먼트 페이지 에러메세지 수정 #1128 * [FIX] ㅌ토너먼트 신청 완료시 모달 종료 #1128 * [FStyle] 아이콘 추가 및 CSS 변경 #1128 * [Style] 스크롤 생성, 중앙 정렬 등등#1128 * [Feat] insert bracket view #1128 * [Style] 토너먼트 카드 마진 수정 #1128 * [Style] 토너먼트 컨테이너, 카드 수정#1128 * [Fix] 컨테이너의 크기를 받아서 브라켓뷰 사이즈에 입력 #1128 * [FIX] API 주소수정 #1128 * [Fix] react-icon 버젼이 다른 문제 해결#1128 --------- Co-authored-by: Junho Jeon <[email protected]>
- Loading branch information
1 parent
116a340
commit c7808d7
Showing
11 changed files
with
170 additions
and
70 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
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
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 |
---|---|---|
@@ -1,16 +1,32 @@ | ||
.tournamentCardContainer { | ||
display: flex; | ||
width: 100%; | ||
padding: 1rem; | ||
margin-bottom: 1rem; | ||
background-color: black; | ||
border: 2px solid black; | ||
border-radius: 0.3rem; | ||
height: 3.5rem; | ||
padding: 0 1rem; | ||
margin: 0.5rem; | ||
overflow-y: scroll; | ||
cursor: pointer; | ||
background: linear-gradient(to bottom, #7816e1, #9e35db); | ||
border-radius: 0.5rem; | ||
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6); | ||
align-items: center; | ||
|
||
.text { | ||
overflow: hidden; | ||
display: flex; | ||
width: 100%; | ||
color: white; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
justify-content: space-between; | ||
|
||
.left { | ||
flex: 2; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
// text-align: left; | ||
} | ||
|
||
.right { | ||
flex: 1; | ||
// text-align: right; | ||
} | ||
} | ||
} |
Oops, something went wrong.