settings.module.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. .user-prompt-button {
  53. height: 100%;
  54. &:not(:last-child) {
  55. margin-right: 5px;
  56. }
  57. }
  58. }
  59. }
  60. }
  61. .user-prompt-actions {
  62. }
  63. }