mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
* #2300 Mobile App Fixes * #2245 Add points-module as payment method * #2245 Add points-module as payment method * #2220 points module * #2220 points module (rewrite the sms verification module) * #2312 [profile-module] Can't update profile detail * #2220 points module * #2220 points module (rewrite the sms verification module) !4 * remove command prompt
123 lines
1.8 KiB
SCSS
123 lines
1.8 KiB
SCSS
.profile-section {
|
|
.nav-tabs {
|
|
border-bottom: 1px solid #dee2e6;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.nav-link {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-size: 16px;
|
|
color: #BCBDC3;
|
|
padding: 0;
|
|
margin-bottom: 5px;
|
|
margin-top: 15px;
|
|
outline: none;
|
|
|
|
&.active {
|
|
font-size: 17px;
|
|
font-weight: bold;
|
|
color: #505050;
|
|
background-color: transparent;
|
|
|
|
svg path {
|
|
fill: rgba(#000, 1);
|
|
}
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
border-right: 1px solid #dee2e6;
|
|
}
|
|
|
|
svg {
|
|
margin-right: 5px;
|
|
width: 15px;
|
|
|
|
path {
|
|
fill: rgba(#000, .4);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.tab-content {
|
|
color: #707070;
|
|
|
|
#nav-profile {
|
|
.username {
|
|
font-size: 19px;
|
|
font-weight: 600;
|
|
@media (max-width: 992px) {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
.last-login {
|
|
font-weight: 400;
|
|
@media (max-width: 992px) {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 165px;
|
|
height: 130px;
|
|
object-fit: cover;
|
|
border-radius: 20px;
|
|
@media (max-width: 992px) {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
.profile--form--area {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
@media (max-width: 992px) {
|
|
display: block;
|
|
}
|
|
|
|
.form-group {
|
|
width: 100%;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
input {
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
border: 1px solid #E5E5E5;
|
|
@media (max-width: 992px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.account--disable--content {
|
|
width: 80%;
|
|
height: 58px;
|
|
background-color: #f3f5f6;
|
|
border-radius: 20px;
|
|
margin-top: 50px;
|
|
padding: 10px;
|
|
font-size: .7em;
|
|
@media (max-width: 992px) {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
button {
|
|
font-size: 14px;
|
|
height: 34px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#nav-details {
|
|
.birthday-field .input-group-addon {
|
|
display: none;
|
|
}
|
|
}
|
|
} |