37 lines
472 B
SCSS
37 lines
472 B
SCSS
@import 'theme.scss';
|
|
|
|
.profile-container {
|
|
.profile-header {
|
|
display: flex;
|
|
|
|
.profile-image {
|
|
width: 75px;
|
|
height: 75px;
|
|
border-radius: 50%;
|
|
padding: 10px;
|
|
padding-bottom: 5px;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
|
|
svg {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
font-size: 40px;
|
|
align-self: center;
|
|
padding: 10px;
|
|
padding-bottom: 5px;
|
|
}
|
|
}
|
|
|
|
.profile-details {
|
|
p {
|
|
font-size: 1rem;
|
|
margin: 0.5rem;
|
|
}
|
|
}
|
|
}
|