ADD: Better Network view

This commit is contained in:
webfussel 2024-05-22 13:41:58 +02:00
parent 40beae70e9
commit aadf90efce
7 changed files with 34 additions and 10 deletions

View file

@ -1,13 +1,17 @@
.Person {
flex: 1 1;
flex-basis: 300px;
flex-basis: clamp(350px, calc(33% - 3rem), 500px);
flex-grow: 1;
flex-shrink: 0;
align-items: center;
justify-content: stretch;
gap: 1rem;
& img {
border: 4px solid var(--color-orange);
border-radius: 50%;
width: 150px;
height: 150px;
object-fit: cover;
}
& span {
@ -27,5 +31,11 @@
margin-top: -1rem;
}
}
& .flavour {}
& .button {
margin-top: auto;
}
}