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

78 lines
1.2 KiB
SCSS
Raw Normal View History

2023-03-13 16:25:07 +00:00
.settings {
padding: 20px;
2023-03-21 16:20:32 +00:00
overflow: auto;
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-05-01 18:26:43 +00:00
.edit-prompt-modal {
display: flex;
flex-direction: column;
.edit-prompt-title {
max-width: unset;
margin-bottom: 20px;
text-align: left;
}
.edit-prompt-content {
max-width: unset;
}
}
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-05-01 18:26:43 +00:00
border: var(--border-in-light);
border-radius: 10px;
2023-04-17 17:34:12 +00:00
.user-prompt-item {
2023-05-01 18:26:43 +00:00
display: flex;
justify-content: space-between;
padding: 10px;
&:not(:last-child) {
border-bottom: var(--border-in-light);
}
2023-04-17 17:34:12 +00:00
.user-prompt-header {
2023-05-01 18:26:43 +00:00
max-width: calc(100% - 100px);
2023-04-17 17:34:12 +00:00
.user-prompt-title {
2023-05-01 18:26:43 +00:00
font-size: 14px;
line-height: 2;
font-weight: bold;
}
.user-prompt-content {
2023-04-17 17:34:12 +00:00
font-size: 12px;
}
2023-05-01 18:26:43 +00:00
}
2023-04-17 17:34:12 +00:00
2023-05-01 18:26:43 +00:00
.user-prompt-buttons {
display: flex;
align-items: center;
2023-04-17 17:34:12 +00:00
2023-05-01 18:26:43 +00:00
.user-prompt-button {
height: 100%;
2023-04-17 17:34:12 +00:00
2023-05-01 18:26:43 +00:00
&:not(:last-child) {
margin-right: 5px;
2023-04-17 17:34:12 +00:00
}
}
}
}
2023-04-17 15:12:27 +00:00
}
.user-prompt-actions {
}
}