🎨 Adjust layout and styling of file list and file details for improved responsiveness and readability

This commit is contained in:
2026-01-28 19:11:41 +00:00
parent 4445514a57
commit 1028cca194

View File

@@ -590,7 +590,7 @@ h2 {
.file-list {
margin-top: 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 0.75rem;
}
@@ -600,28 +600,35 @@ h2 {
border-radius: 6px;
border: 1px solid #e9ecef;
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
gap: 0.75rem;
text-align: center;
gap: 0.5rem;
}
.file-download-btn {
align-self: center;
margin-bottom: 0.25rem;
}
.file-info {
display: flex;
flex-direction: column;
flex: 1;
gap: 0.25rem;
min-width: 0;
}
.file-name {
font-weight: 500;
color: #495057;
font-size: 0.9rem;
font-size: 0.85rem;
word-break: break-word;
line-height: 1.2;
}
.file-size {
color: #999;
font-size: 0.85rem;
margin-top: 0.25rem;
font-size: 0.8rem;
}
.btn-small {