0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-03 04:49:03 -05:00
penpot/frontend/resources/styles/main/partials/user-settings.scss

80 lines
1.2 KiB
SCSS
Raw Normal View History

.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;
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;
border-color: transparent;
}
&.current {
2020-03-03 13:14:37 +01:00
background-color: $color-gray-50;
border: 0;
2020-03-03 13:14:37 +01:00
color: $color-primary;
}
}
}
}
.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;
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-06 12:14:44 +01:00
.btn-primary {
margin-top: $medium;
}
}
2016-04-02 11:17:05 +03:00
.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;
}
}