SidePanel.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Add this at the top of the file */
  2. body {
  3. border-color: rgb(159, 6, 11) !important; /* sky-200 color */
  4. }
  5. /* Remove unused classes: .App, .App-logo, .App-header */
  6. code {
  7. background: rgba(186, 230, 253, 0.4);
  8. border-radius: 0.25rem;
  9. padding: 0.2rem 0.5rem;
  10. color: #0369a1;
  11. }
  12. /* Scrollbar styles */
  13. ::-webkit-scrollbar {
  14. width: 8px;
  15. }
  16. ::-webkit-scrollbar-track {
  17. background: #f1f5f9;
  18. }
  19. ::-webkit-scrollbar-thumb {
  20. background: #0ea5e9;
  21. border-radius: 4px;
  22. }
  23. ::-webkit-scrollbar-thumb:hover {
  24. background: #0284c7;
  25. }
  26. /* Used classes from the component */
  27. .header {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. padding: 0.75rem;
  32. background-color: transparent;
  33. border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  34. }
  35. .header-logo {
  36. display: flex;
  37. align-items: center;
  38. }
  39. .header-icons {
  40. display: flex;
  41. gap: 0.75rem;
  42. align-items: center;
  43. }
  44. .header-icon {
  45. color: #19C2FF;
  46. cursor: pointer;
  47. transition: color 0.2s ease;
  48. opacity: 0.8;
  49. }
  50. .header-icon:hover {
  51. color: #0073DC;
  52. opacity: 1;
  53. }
  54. .send-button {
  55. color: #19C2FF;
  56. cursor: pointer;
  57. transition: color 0.2s ease;
  58. opacity: 0.8;
  59. }
  60. .send-button:hover {
  61. color: #0073DC;
  62. opacity: 1;
  63. }
  64. .send-button:disabled {
  65. color: #CBD5E1;
  66. cursor: not-allowed;
  67. opacity: 0.5;
  68. }
  69. /* Add these styles to your existing CSS */
  70. .scrollbar-gutter-stable {
  71. scrollbar-gutter: stable;
  72. }
  73. /* Optional: Style the scrollbar for webkit browsers */
  74. .scrollbar-gutter-stable::-webkit-scrollbar {
  75. width: 8px;
  76. }
  77. .scrollbar-gutter-stable::-webkit-scrollbar-track {
  78. background: #f1f5f9; /* sky-50 */
  79. }
  80. .scrollbar-gutter-stable::-webkit-scrollbar-thumb {
  81. background: #7dd3fc; /* sky-300 - very light blue */
  82. border-radius: 4px;
  83. }
  84. .scrollbar-gutter-stable::-webkit-scrollbar-thumb:hover {
  85. background: #38bdf8; /* sky-400 - slightly darker on hover */
  86. }