-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'test' of https://github.com/readyvery/readyFront into test
- Loading branch information
Showing
33 changed files
with
488 additions
and
361 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -146,4 +146,4 @@ | |
@font-face { | ||
font-family: "KBold"; | ||
src: url("./assets/font/Kotrahope-Bold.otf"); | ||
} | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,65 @@ | ||
/* 로그인 되어 있을 때 */ | ||
.login-box { | ||
width: 10.375rem; | ||
height: 7rem; | ||
box-shadow: 0.25px 0.25rem 0.2rem rgba(0, 0, 0, 0.2); /* 그림자 추가 */ | ||
border-radius: 0.5rem; | ||
text-decoration: none; | ||
} | ||
.quick-order-item { | ||
padding: 0 4rem 0 0; | ||
width: 10.375rem; | ||
} | ||
|
||
.item-name { | ||
color: #4f4f4f; | ||
font-family: "Pretendard Variable"; | ||
font-weight: bold; | ||
font-style: normal; | ||
font-size: 0.9375rem; | ||
margin: 1rem 7% 0 7%; | ||
white-space: nowrap; /* 텍스트를 한 줄에 나타내기 */ | ||
overflow: hidden; /* 텍스트가 넘어갈 경우 숨기기 */ | ||
text-overflow: ellipsis; /* 생략 부호(...) 표시 */ | ||
} | ||
|
||
.item-detail { | ||
font-family: "Pretendard Variable"; | ||
font-weight: 400; | ||
font-style: normal; | ||
font-size: 0.75rem; | ||
color: black; | ||
margin: 2rem 7% 0 7%; | ||
white-space: nowrap; /* 텍스트를 한 줄에 나타내기 */ | ||
overflow: hidden; /* 텍스트가 넘어갈 경우 숨기기 */ | ||
text-overflow: ellipsis; /* 생략 부호(...) 표시 */ | ||
} | ||
|
||
.item-price { | ||
font-family: "Pretendard Variable"; | ||
font-weight: 400; | ||
font-style: normal; | ||
font-size: 0.75rem; | ||
color: black; | ||
margin: 0 7% 0 7%; | ||
} | ||
|
||
/* 로그인 되어있지 않을 때 */ | ||
.not-login-box { | ||
width: 99%; | ||
height: 7rem; | ||
display: flex; /* Flexbox를 사용해 가로 정렬 */ | ||
align-items: center; | ||
box-shadow: 0.25px 0.25rem 0.2rem rgba(0, 0, 0, 0.2); /* 그림자 추가 */ | ||
border-radius: 0.5rem; | ||
text-decoration: none; | ||
color: black; | ||
font-size: 1.25rem; | ||
font-family: "Pretendard Variable"; | ||
font-weight: bold; | ||
font-style: normal; | ||
} | ||
|
||
.profile-icon { | ||
margin: 0 5%; | ||
} |
Oops, something went wrong.