Skip to content

Commit

Permalink
Merge pull request #95 from hyosung-second-team1/85-jsp-vote-distance
Browse files Browse the repository at this point in the history
[Fix] 일정상세보기 및 투표 프로필 이미지 비율 조정
  • Loading branch information
Koneweekk authored May 16, 2024
2 parents be1c84e + a0254f4 commit 19811da
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions src/main/resources/static/css/schedule/detail.css
Original file line number Diff line number Diff line change
Expand Up @@ -269,13 +269,14 @@ body {
.member-image {
width: 40px;
height: 40px;
border-radius: 10px;
overflow: hidden;
}

.member-image > img{
width: 35px;
height: 35px;
border-radius: 10px;
object-fit: contain;
width: 100%;
height: 100%;
object-fit: cover;
}

.member-info {
Expand Down
9 changes: 5 additions & 4 deletions src/main/resources/static/css/schedule/vote.css
Original file line number Diff line number Diff line change
Expand Up @@ -387,13 +387,14 @@ body {
.member-image {
width: 40px;
height: 40px;
border-radius: 10px;
overflow: hidden;
}

.member-image > img{
width: 35px;
height: 35px;
border-radius: 10px;
object-fit: contain;
width: 100%;
height: 100%;
object-fit: cover;
}

.member-info {
Expand Down

0 comments on commit 19811da

Please sign in to comment.