31 lines
No EOL
442 B
SCSS
31 lines
No EOL
442 B
SCSS
.contact {
|
|
display: flex;
|
|
gap: 20px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.photo {
|
|
width: 80px;
|
|
height: 80px;
|
|
object-fit: cover;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.contact a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.contact a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media screen and (max-width: 576px) {
|
|
.contact {
|
|
margin-top: 10px;
|
|
gap: 10px;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
}
|
|
} |