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

@ -83,6 +83,7 @@ p {
border: 1px solid var(--color-text);
border-radius: 0 0 30px 30px;
box-shadow: 0 4px 0 0 var(--color-text);
z-index: 1000;
}
.navbar-brand {
@ -278,7 +279,7 @@ li .dropdown-item-mobile {
}
.hero-card.right-1 svg:hover,
.hero-card.right-1 svg:active{
.hero-card.right-1 svg:active {
color: var(--color-link);
}
@ -366,7 +367,7 @@ li .dropdown-item-mobile {
.ese-section .card-body {
font-size: 1.1rem;
align-content: center;
max-width: 80%;
max-width: 90%;
margin-left: auto;
margin-right: auto;
}

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;
}
}