mirror of
https://github.com/Yidadaa/ChatGPT-Next-Web.git
synced 2025-08-08 07:10:16 +08:00
.github
.husky
app
api
components
button.module.scss
button.tsx
chat-list.tsx
chat.module.scss
chat.tsx
error.tsx
home.module.scss
home.tsx
input-range.module.scss
input-range.tsx
markdown.tsx
settings.module.scss
settings.tsx
ui-lib.module.scss
ui-lib.tsx
window.scss
config
icons
locales
store
styles
constant.ts
global.d.ts
layout.tsx
page.tsx
polyfill.ts
requests.ts
utils.ts
docs
public
scripts
.eslintignore
.eslintrc.json
.gitignore
.gitpod.yml
.lintstagedrc.json
.prettierrc.js
CODE_OF_CONDUCT.md
Dockerfile
LICENSE
README.md
README_CN.md
middleware.ts
next.config.js
package.json
tsconfig.json
vercel.json
yarn.lock
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%;
|
|
}
|
|
}
|