109 lines
1.9 KiB
SCSS
109 lines
1.9 KiB
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
.ProfileEditor {
|
|
&__icon {
|
|
&--container {
|
|
align-items: center;
|
|
display: flex;
|
|
font-size: 24px;
|
|
height: 32px;
|
|
justify-content: center;
|
|
width: 32px;
|
|
}
|
|
|
|
&::after {
|
|
-webkit-mask-size: 100%;
|
|
content: '';
|
|
display: block;
|
|
height: 24px;
|
|
width: 24px;
|
|
|
|
@include light-theme {
|
|
background-color: $color-gray-75;
|
|
}
|
|
|
|
@include dark-theme {
|
|
background-color: $color-gray-15;
|
|
}
|
|
}
|
|
|
|
&--name {
|
|
&::after {
|
|
-webkit-mask: url(../images/icons/v2/profile-outline-20.svg) no-repeat
|
|
center;
|
|
}
|
|
}
|
|
|
|
&--username {
|
|
&::after {
|
|
-webkit-mask: url(../images/icons/v2/at-24.svg) no-repeat center;
|
|
}
|
|
}
|
|
|
|
&--bio {
|
|
&::after {
|
|
-webkit-mask: url(../images/icons/v2/compose-outline-24.svg) no-repeat
|
|
center;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__about-input {
|
|
&__icon {
|
|
left: 4px;
|
|
}
|
|
|
|
&__input--with-icon {
|
|
padding-left: 32px;
|
|
}
|
|
}
|
|
|
|
&__row {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
&__divider {
|
|
border-style: solid;
|
|
border-bottom: none;
|
|
|
|
@include light-theme {
|
|
border-color: $color-gray-15;
|
|
}
|
|
|
|
@include dark-theme {
|
|
border-color: $color-gray-75;
|
|
}
|
|
}
|
|
|
|
&__error {
|
|
@include font-body-2;
|
|
margin: 16px 0;
|
|
|
|
color: $color-accent-red;
|
|
}
|
|
|
|
&__info {
|
|
@include font-body-2;
|
|
margin: 16px 0;
|
|
|
|
@include light-theme {
|
|
color: $color-gray-60;
|
|
}
|
|
@include dark-theme {
|
|
color: $color-gray-25;
|
|
}
|
|
|
|
a {
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
}
|
|
|
|
// To account for missing error section - 16px previous margin, 34px for
|
|
// 16px margin of error plus 18px line height.
|
|
&--no-error {
|
|
margin-bottom: 50px;
|
|
}
|
|
}
|
|
}
|