-
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.
- Loading branch information
Showing
6 changed files
with
185 additions
and
139 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
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.