2016-03-03 21:25:19 +01:00
|
|
|
.user-settings {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-settings-nav {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.user-settings-nav-inside {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
li {
|
|
|
|
background-color: transparent;
|
2020-03-03 13:14:37 +01:00
|
|
|
border: 1px solid $color-gray-20;
|
2016-03-03 21:25:19 +01:00
|
|
|
border-radius: $br-small;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: $medium;
|
|
|
|
padding: $small $medium;
|
|
|
|
|
|
|
|
&:hover {
|
2020-03-03 13:14:37 +01:00
|
|
|
background-color: $color-gray-10;
|
2016-03-03 21:25:19 +01:00
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current {
|
2020-03-03 13:14:37 +01:00
|
|
|
background-color: $color-gray-50;
|
2016-03-03 21:25:19 +01:00
|
|
|
border: 0;
|
2020-03-03 13:14:37 +01:00
|
|
|
color: $color-primary;
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-settings-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 500px;
|
|
|
|
|
|
|
|
.user-settings-label {
|
2020-03-03 13:14:37 +01:00
|
|
|
border-bottom: 1px solid $color-gray-60;
|
2016-03-03 21:25:19 +01:00
|
|
|
font-weight: bold;
|
|
|
|
margin: $x-small 0 $medium 0;
|
|
|
|
padding: $medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-text {
|
2020-03-03 13:14:37 +01:00
|
|
|
color: $color-gray-60;
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
2016-03-06 12:14:44 +01:00
|
|
|
.btn-primary {
|
|
|
|
margin-top: $medium;
|
|
|
|
}
|
|
|
|
|
2016-03-03 21:25:19 +01:00
|
|
|
}
|
|
|
|
|
2016-04-02 11:17:05 +03:00
|
|
|
.profile-form,
|
|
|
|
.password-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2016-03-03 21:25:19 +01:00
|
|
|
.avatar-form {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
img {
|
|
|
|
border-radius: 50%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
height: 120px;
|
|
|
|
margin-right: $medium;
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|