yet more mobile improvements.

This commit is contained in:
Hunter W.
2026-06-20 18:07:14 -04:00
parent 7169f76ddc
commit c09094b968
6 changed files with 93 additions and 87 deletions

24
styles/project-card.css Normal file
View File

@@ -0,0 +1,24 @@
.project-card{
p {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
line-clamp: 3;
text-overflow: ellipsis;
overflow:hidden;
}
}
.project-card-title-year-box {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 12;
}
@media (max-width: 768px) {
.project-card-title-year-box {
flex-direction: column;
}
}