2022-09-20 23:23:22 +02:00
|
|
|
// Copyright (c) 2020 KALEIDOS INC
|
2020-10-05 18:20:39 +02:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//
|
2022-09-20 23:23:22 +02:00
|
|
|
// Copyright (c) KALEIDOS INC
|
2021-04-10 09:43:04 +02:00
|
|
|
|
2020-10-05 18:20:39 +02:00
|
|
|
.dashboard-sidebar {
|
|
|
|
&.settings {
|
|
|
|
.back-to-dashboard {
|
2020-10-19 14:07:59 +02:00
|
|
|
padding: 12px 18px;
|
2020-10-05 18:20:39 +02:00
|
|
|
font-size: $fs14;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-right: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
color: $color-gray-60;
|
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-60;
|
|
|
|
transform: rotate(90deg);
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.form-container {
|
|
|
|
margin-top: 50px;
|
|
|
|
display: flex;
|
|
|
|
max-width: 368px;
|
2022-06-17 09:47:30 +02:00
|
|
|
margin-bottom: 2rem;
|
2020-10-05 18:20:39 +02:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&.two-columns {
|
|
|
|
max-width: 536px;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2022-05-24 13:04:04 +02:00
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2020-10-05 18:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 120px;
|
|
|
|
min-width: 120px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
border-radius: 50%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
height: 120px;
|
2021-10-05 10:16:44 +02:00
|
|
|
margin-right: $size-4;
|
2020-10-05 18:20:39 +02:00
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.image-change-field {
|
|
|
|
position: relative;
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
|
|
|
|
.update-overlay {
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
width: 121px;
|
|
|
|
height: 121px;
|
|
|
|
border-radius: 50%;
|
|
|
|
font-size: $fs24;
|
|
|
|
color: $color-white;
|
|
|
|
line-height: 120px;
|
|
|
|
text-align: center;
|
|
|
|
background: $color-primary-dark;
|
|
|
|
z-index: 14;
|
|
|
|
}
|
|
|
|
|
2022-01-12 11:27:43 +01:00
|
|
|
input[type="file"] {
|
2020-10-05 18:20:39 +02:00
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
z-index: 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2022-01-12 11:27:43 +01:00
|
|
|
.update-overlay {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2020-10-05 18:20:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-width: 368px;
|
|
|
|
width: 100%;
|
2022-03-22 18:27:06 +01:00
|
|
|
|
|
|
|
.newsletter-subs {
|
|
|
|
border-bottom: 1px solid $color-gray-20;
|
|
|
|
border-top: 1px solid $color-gray-20;
|
|
|
|
padding: 30px 0;
|
|
|
|
margin-bottom: 31px;
|
|
|
|
|
|
|
|
.newsletter-title {
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
color: $color-gray-30;
|
|
|
|
font-size: $fs14;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
color: $color-gray-60;
|
|
|
|
font-size: $fs12;
|
|
|
|
margin-right: -17px;
|
|
|
|
margin-bottom: 13px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
font-family: "worksans", sans-serif;
|
|
|
|
color: $color-gray-30;
|
|
|
|
font-size: $fs12;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-checkbox label {
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
}
|
2020-10-05 18:20:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.options-form,
|
|
|
|
.password-form {
|
|
|
|
h2 {
|
|
|
|
font-size: $fs14;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|