fix: card height 960px, credentials always visible, only comment scrolls

This commit is contained in:
2026-04-28 13:02:19 +00:00
parent 530d901a45
commit af02c0d059
+7 -3
View File
@@ -322,7 +322,7 @@ button {
} }
.service-grid { .service-grid {
grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
grid-auto-rows: 480px; grid-auto-rows: 960px;
align-items: stretch; align-items: stretch;
} }
.category-strip { .category-strip {
@@ -360,6 +360,7 @@ button {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 0.3rem; gap: 0.3rem;
flex-shrink: 0;
} }
.svc-cred-row { .svc-cred-row {
display: flex; display: flex;
@@ -470,11 +471,14 @@ button {
min-height: 0; min-height: 0;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow-y: auto; overflow: hidden;
overflow-x: hidden;
} }
.tile-comment { .tile-comment {
display: block; display: block;
flex: 1;
min-height: 0;
overflow-y: auto;
overflow-x: hidden;
line-height: 1.35; line-height: 1.35;
padding-right: 0.2rem; padding-right: 0.2rem;
} }