settings.module.scss 1.2 KB

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