mirror of
https://github.com/penpot/penpot.git
synced 2025-02-09 00:28:20 -05:00
42 lines
621 B
SCSS
42 lines
621 B
SCSS
.user-settings-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0 auto;
|
|
width: 500px;
|
|
|
|
.user-settings-label {
|
|
color: $color-black;
|
|
font-size: $fs15;
|
|
margin: $x-big 0 $x-small 0;
|
|
padding: $medium 0;
|
|
}
|
|
|
|
.input-text {
|
|
color: $color-gray-60;
|
|
}
|
|
|
|
.btn-primary {
|
|
margin-top: $medium;
|
|
}
|
|
|
|
.profile-form,
|
|
.password-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.avatar-form {
|
|
align-items: center;
|
|
display: flex;
|
|
|
|
img {
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
height: 120px;
|
|
margin-right: $medium;
|
|
width: 120px;
|
|
}
|
|
|
|
}
|
|
}
|
|
|