릴리스: v1.2.71 공개 티어표 복사와 보기 상태 보정

This commit is contained in:
2026-03-31 16:52:17 +09:00
parent 6dce53db7a
commit 5b047b0458
6 changed files with 179 additions and 11 deletions

View File

@@ -213,8 +213,9 @@ function submitSearch() {
}
.list {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
gap: 18px;
justify-content: start;
}
.boardCard {
border-radius: 22px;
@@ -271,25 +272,34 @@ function submitSearch() {
min-width: 0;
font-size: 18px;
line-height: 1.35;
white-space: nowrap;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.boardCard__head {
min-width: 0;
padding: 16px 18px 18px;
display: grid;
gap: 6px;
gap: 8px;
}
.boardCard__titleRow,
.boardCard__metaRow {
min-width: 0;
display: flex;
gap: 10px;
align-items: center;
justify-content: space-between;
}
.boardCard__titleRow {
align-items: flex-start;
}
.boardCard__metaRow {
align-items: flex-end;
flex-wrap: wrap;
}
.boardCard__author {
min-width: 0;
@@ -323,6 +333,7 @@ function submitSearch() {
.boardCard__date,
.favoriteStat {
flex: 0 0 auto;
min-width: 0;
font-size: 13px;
color: rgba(255, 255, 255, 0.64);
white-space: nowrap;