settings.module.scss 1.3 KB

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