minor responsive layout adjustments
All checks were successful
publish / publish (push) Successful in 27s

This commit is contained in:
Jannik Menzel 2025-06-07 21:13:18 +02:00
parent 050d664e0c
commit 23051eecf0
3 changed files with 17 additions and 5 deletions

View file

@ -20,6 +20,7 @@
#markdown .profile-content {
flex: 1;
margin-top: 1rem;
}
@media (max-width: 768px) {
@ -30,7 +31,12 @@
}
#markdown .profile-content {
text-align: center;
margin-left: 2rem;
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
width: 100%;
}
}
@ -143,3 +149,9 @@
#markdown .details.expanded .details-content a:hover {
text-decoration: none !important;
}
@media (max-width: 768px) {
.details-number {
display: none;
}
}