Skip to content

Commit

Permalink
fix : footer 위치, 하단 버튼 안 눌러짐 버그, 배경 효과 높이 버그 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
wkdghdwns199 committed Feb 1, 2025
1 parent c87fb7f commit 658bd68
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions client/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -571,12 +571,27 @@ code {
}

.circles{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
overflow: hidden;
}

/* 데스크탑에서만 최소 높이를 970px로 설정 */
@media (min-width: 769px) {
.circles {
min-height: 970px; /* 데스크탑에서 최소 높이 설정 */
}
}

/* 모바일 디바이스에서는 높이를 자유롭게 조절 */
@media (max-width: 768px) {
.circles {
height: 100vh; /* 모바일에서는 높이를 자동으로 설정 */
min-height: unset; /* 최소 높이 제거 */
}
}

.circles li{
Expand Down

0 comments on commit 658bd68

Please sign in to comment.