settings.module.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .settings {
  2. padding: 20px;
  3. overflow: auto;
  4. }
  5. .avatar {
  6. cursor: pointer;
  7. }
  8. .user-prompt-modal {
  9. min-height: 40vh;
  10. .user-prompt-search {
  11. width: 100%;
  12. max-width: 100%;
  13. margin-bottom: 10px;
  14. background-color: var(--gray);
  15. }
  16. .user-prompt-list {
  17. padding: 10px 0;
  18. .user-prompt-item {
  19. margin-bottom: 10px;
  20. widows: 100%;
  21. .user-prompt-header {
  22. display: flex;
  23. widows: 100%;
  24. margin-bottom: 5px;
  25. .user-prompt-title {
  26. flex-grow: 1;
  27. max-width: 100%;
  28. margin-right: 5px;
  29. padding: 5px;
  30. font-size: 12px;
  31. text-align: left;
  32. }
  33. .user-prompt-buttons {
  34. display: flex;
  35. align-items: center;
  36. .user-prompt-button {
  37. height: 100%;
  38. &:not(:last-child) {
  39. margin-right: 5px;
  40. }
  41. }
  42. }
  43. }
  44. .user-prompt-content {
  45. width: 100%;
  46. box-sizing: border-box;
  47. padding: 5px;
  48. margin-right: 10px;
  49. font-size: 12px;
  50. flex-grow: 1;
  51. }
  52. }
  53. }
  54. .user-prompt-actions {
  55. }
  56. }