sd-panel.module.scss 826 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .ctrl-param-item {
  2. display: flex;
  3. justify-content: space-between;
  4. min-height: 40px;
  5. padding: 10px 0;
  6. animation: slide-in ease 0.6s;
  7. flex-direction: column;
  8. .ctrl-param-item-header {
  9. display: flex;
  10. align-items: center;
  11. .ctrl-param-item-title {
  12. font-size: 14px;
  13. font-weight: bolder;
  14. margin-bottom: 5px;
  15. }
  16. }
  17. .ctrl-param-item-sub-title {
  18. font-size: 12px;
  19. font-weight: normal;
  20. margin-top: 3px;
  21. }
  22. textarea {
  23. appearance: none;
  24. border-radius: 10px;
  25. border: var(--border-in-light);
  26. min-height: 36px;
  27. box-sizing: border-box;
  28. background: var(--white);
  29. color: var(--black);
  30. padding: 0 10px;
  31. max-width: 50%;
  32. font-family: inherit;
  33. }
  34. }
  35. .ai-models {
  36. button {
  37. margin-bottom: 10px;
  38. padding: 10px;
  39. width: 100%;
  40. }
  41. }