ChatGPT-Next-Web/app/components/settings.module.scss

95 lines
1.5 KiB
SCSS
Raw Normal View History

2023-03-13 16:25:07 +00:00
@import "./window.scss";
.settings {
padding: 20px;
2023-03-21 16:20:32 +00:00
overflow: auto;
2023-03-13 16:25:07 +00:00
}
.settings-title {
font-size: 14px;
font-weight: bolder;
}
2023-03-21 16:20:32 +00:00
.settings-sub-title {
font-size: 12px;
font-weight: normal;
}
2023-03-13 16:25:07 +00:00
.avatar {
cursor: pointer;
2023-03-21 16:20:32 +00:00
}
2023-04-03 17:05:33 +00:00
2023-04-09 15:35:45 +00:00
.password-input-container {
max-width: 50%;
2023-04-03 17:05:33 +00:00
display: flex;
justify-content: flex-end;
.password-eye {
margin-right: 4px;
}
2023-04-09 15:35:45 +00:00
.password-input {
min-width: 80%;
}
2023-04-03 17:05:33 +00:00
}
2023-04-17 15:12:27 +00:00
.user-prompt-modal {
2023-04-17 17:34:12 +00:00
min-height: 40vh;
2023-04-17 15:12:27 +00:00
.user-prompt-search {
2023-04-17 17:34:12 +00:00
width: 100%;
max-width: 100%;
margin-bottom: 10px;
background-color: var(--gray);
2023-04-17 15:12:27 +00:00
}
.user-prompt-list {
2023-04-17 17:34:12 +00:00
padding: 10px 0;
.user-prompt-item {
margin-bottom: 10px;
widows: 100%;
.user-prompt-header {
display: flex;
widows: 100%;
margin-bottom: 5px;
.user-prompt-title {
flex-grow: 1;
max-width: 100%;
margin-right: 5px;
padding: 5px;
font-size: 12px;
text-align: left;
}
.user-prompt-buttons {
display: flex;
align-items: center;
.user-prompt-button {
height: 100%;
&:not(:last-child) {
margin-right: 5px;
}
}
}
}
.user-prompt-content {
width: 100%;
box-sizing: border-box;
padding: 5px;
margin-right: 10px;
font-size: 12px;
flex-grow: 1;
}
}
2023-04-17 15:12:27 +00:00
}
.user-prompt-actions {
}
}