33 lines
508 B
SCSS
33 lines
508 B
SCSS
.header {
|
|
padding: 1rem;
|
|
|
|
@include flexbox();
|
|
@include align-items(center);
|
|
@include justify-content(center);
|
|
@include flex-direction(column);
|
|
|
|
.title {
|
|
font-family: $header_title_font;
|
|
font-weight: 900;
|
|
}
|
|
|
|
&__whoami {
|
|
@include flexbox();
|
|
@include justify-content(center);
|
|
@include align-items(center);
|
|
width: 100%;
|
|
|
|
&--image {
|
|
max-width: 64px;
|
|
max-height: 64px;
|
|
}
|
|
|
|
&--name {
|
|
|
|
}
|
|
|
|
&--desc {
|
|
margin: 0.25rem 0;
|
|
}
|
|
}
|
|
} |