settings.module.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .settings {
  2. padding: 20px;
  3. overflow: auto;
  4. }
  5. .avatar {
  6. cursor: pointer;
  7. }
  8. .edit-prompt-modal {
  9. display: flex;
  10. flex-direction: column;
  11. .edit-prompt-title {
  12. max-width: unset;
  13. margin-bottom: 20px;
  14. text-align: left;
  15. }
  16. .edit-prompt-content {
  17. max-width: unset;
  18. }
  19. }
  20. .user-prompt-modal {
  21. min-height: 40vh;
  22. .user-prompt-search {
  23. width: 100%;
  24. max-width: 100%;
  25. margin-bottom: 10px;
  26. background-color: var(--gray);
  27. }
  28. .user-prompt-list {
  29. border: var(--border-in-light);
  30. border-radius: 10px;
  31. .user-prompt-item {
  32. display: flex;
  33. justify-content: space-between;
  34. padding: 10px;
  35. &:not(:last-child) {
  36. border-bottom: var(--border-in-light);
  37. }
  38. .user-prompt-header {
  39. max-width: calc(100% - 100px);
  40. .user-prompt-title {
  41. font-size: 14px;
  42. line-height: 2;
  43. font-weight: bold;
  44. }
  45. .user-prompt-content {
  46. font-size: 12px;
  47. }
  48. }
  49. .user-prompt-buttons {
  50. display: flex;
  51. align-items: center;
  52. column-gap: 2px;
  53. .user-prompt-button {
  54. //height: 100%;
  55. padding: 7px;
  56. }
  57. }
  58. }
  59. }
  60. }