bugfix :: 대화방, 앨범함에 이미지 뭉게짐 현상 수정.

1. 앨범함 : 리스트에 가로세로 고정함에 의해서 비율 깨짐.
2. 대화방 : 높이가 작은 이미지를 강제로 140 까지 키우면서 생긴 이미지 열화.
This commit is contained in:
leejinho 2020-02-11 16:20:44 +09:00
parent d021d67945
commit 796e00ae83
2 changed files with 4 additions and 3 deletions

View File

@ -101,8 +101,8 @@ $tablet-s-width: 768px;
border: 1px dotted #cccccc;
box-sizing: border-box;
img {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
}
}
dd {

View File

@ -3,7 +3,8 @@
position: relative;
img {
height: 140px;
max-height: 140px;
min-height: 20px;
width: auto;
}