1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 07:58:26 -04:00
jarv.is/components/page-header/Name.module.scss

43 lines
528 B
SCSS

.title {
display: flex;
align-items: center;
color: var(--medium-dark);
background: none;
padding-bottom: 0;
&:hover {
color: var(--link);
.selfie {
opacity: 0.9;
}
}
}
.selfie {
width: 50px;
height: 50px;
img {
border: 1px solid var(--light) !important;
border-radius: 50%;
}
}
.name {
margin: 0 0.6em;
font-size: 1.2em;
font-weight: 500;
}
@media screen and (max-width: 768px) {
.selfie {
width: 70px;
height: 70px;
}
.name {
display: none;
}
}