forked from XiaoMo/ChatGPT-Next-Web
35 lines
423 B
SCSS
35 lines
423 B
SCSS
@import "./window.scss";
|
|
|
|
.settings {
|
|
padding: 20px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.settings-title {
|
|
font-size: 14px;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.settings-sub-title {
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.avatar {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.password-input-container {
|
|
max-width: 50%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
.password-eye {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.password-input {
|
|
min-width: 80%;
|
|
}
|
|
}
|