-
Notifications
You must be signed in to change notification settings - Fork 1
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
[feat]스켈레톤 UI / 모든 오류 수정
- Loading branch information
Showing
8 changed files
with
224 additions
and
122 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.
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,30 @@ | ||
.skeleton-loader { | ||
width: 130px; | ||
height:130px; | ||
border-radius: 50%; | ||
margin: 10px; | ||
position: relative; | ||
overflow: hidden; | ||
background: #f5f5f5; | ||
box-shadow: 0px 10px 6px rgba(0, 0, 0, 0.1) | ||
} | ||
|
||
.skeleton-loader::before { | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
left: -100%; | ||
width: 50%; | ||
height: 100%; | ||
background: linear-gradient(to left, transparent 0%, #ffffff 10%, transparent 100%); | ||
animation: shimmer 1.1s infinite linear; | ||
} | ||
|
||
@keyframes shimmer { | ||
0% { | ||
transform: translateX(-100%); | ||
} | ||
100% { | ||
transform: translateX(500%); | ||
} | ||
} |
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,16 @@ | ||
/* Dropdown.css */ | ||
.dropdown-item { | ||
padding: 10px 20px; | ||
cursor: pointer; /* 마우스를 올렸을 때 커서 모양 변경 */ | ||
transition: background-color 0.3s; /* 부드러운 색상 전환 효과 */ | ||
} | ||
|
||
.dropdown-item:hover { | ||
background-color: #e0e0e0; /* 마우스를 올렸을 때 배경색 변경 */ | ||
} | ||
.dropdown-menu { | ||
position: absolute; | ||
right: 0; /* 오른쪽 끝에 정렬 */ | ||
width: 200px; /* 적절한 너비 설정 */ | ||
/* 기타 스타일 */ | ||
} |
Oops, something went wrong.