settings.module.scss 1.3 KB

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