NextChat-U/app/components/settings.module.scss

73 lines
1.2 KiB
SCSS
Raw Normal View History

2023-03-14 01:25:07 +09:00
.settings {
padding: 20px;
2023-03-22 01:20:32 +09:00
overflow: auto;
2023-03-14 01:25:07 +09:00
}
.avatar {
cursor: pointer;
2023-03-22 01:20:32 +09:00
}
2023-04-04 02:05:33 +09:00
2023-05-02 03:26:43 +09: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-18 00:12:27 +09:00
.user-prompt-modal {
2023-04-18 02:34:12 +09:00
min-height: 40vh;
2023-04-18 00:12:27 +09:00
.user-prompt-search {
2023-04-18 02:34:12 +09:00
width: 100%;
max-width: 100%;
margin-bottom: 10px;
background-color: var(--gray);
2023-04-18 00:12:27 +09:00
}
.user-prompt-list {
2023-05-02 03:26:43 +09:00
border: var(--border-in-light);
border-radius: 10px;
2023-04-18 02:34:12 +09:00
.user-prompt-item {
2023-05-02 03:26:43 +09:00
display: flex;
justify-content: space-between;
padding: 10px;
&:not(:last-child) {
border-bottom: var(--border-in-light);
}
2023-04-18 02:34:12 +09:00
.user-prompt-header {
2023-05-02 03:26:43 +09:00
max-width: calc(100% - 100px);
2023-04-18 02:34:12 +09:00
.user-prompt-title {
2023-05-02 03:26:43 +09:00
font-size: 14px;
line-height: 2;
font-weight: bold;
}
.user-prompt-content {
2023-04-18 02:34:12 +09:00
font-size: 12px;
}
2023-05-02 03:26:43 +09:00
}
2023-04-18 02:34:12 +09:00
2023-05-02 03:26:43 +09:00
.user-prompt-buttons {
display: flex;
align-items: center;
2023-05-08 09:27:10 +09:00
column-gap: 2px;
2023-04-18 02:34:12 +09:00
2023-05-02 03:26:43 +09:00
.user-prompt-button {
2023-05-08 09:27:10 +09:00
//height: 100%;
padding: 7px;
2023-04-18 02:34:12 +09:00
}
}
}
2023-04-18 00:12:27 +09:00
}
}