vayana

ChatGPT custom

Aug 15th, 2023
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. /* Wider chat window */
  2. .xl\:max-w-3xl, .md\:max-w-3xl {
  3. max-width: 96%;
  4. }
  5.  
  6. textarea#prompt-textarea {
  7. max-height: 230px !important;
  8. }
  9.  
  10. /* remove grey space */
  11. .md\:h-48 {
  12. height: 12rem;
  13. }
  14.  
  15. .absolute.bottom-0.left-0.w-full.border-t.md\:border-t-0.dark\:border-white\/20.md\:border-transparent.md\:dark\:border-transparent.md\:bg-vert-light-gradient.bg-white.dark\:bg-gray-800.md\:\!bg-transparent.dark\:md\:bg-vert-dark-gradient.pt-2.md\:pl-2.md\:w-\[calc\(100\%-\.5rem\)\] {
  16. width: 98%;
  17. }
  18.  
  19.  
  20. /* Move scrollable area up*/
  21. [class^="react-scroll-to-bottom--"] {
  22. height: 87%;
  23. overflow-y: auto;
  24. width: 100%;
  25. overflow-x: hidden;
  26. }
  27.  
  28. /* Increase side scroll bar width*/
  29. [class^="react-scroll-to-bottom--"]::-webkit-scrollbar {
  30. width: 20px;
  31. }
  32.  
  33. /* Increase side scroll bar thumb and scroll speed*/
  34. [class^="react-scroll-to-bottom--"]::-webkit-scrollbar-thumb {
  35. min-height: 40px;
  36. }
  37.  
  38. /* Remove prompt suggestions */
  39. .md\:overflow-visible {
  40. display: none;
  41. }
  42.  
  43. /* Move regenerate button under the prompt input */
  44. .md\:items-end {
  45. align-items: flex-end;
  46. position: absolute;
  47. left: 0;
  48. bottom: -45px;
  49. }
  50.  
  51. /* Add red bg color to regenerate button*/
  52. button.btn.relative.btn-neutral.whitespace-nowrap.-z-0.border-0.md\:border {
  53. border-radius: 10px;
  54. background: #ee0008;
  55. border: 1px solid #ee0008;
  56. color: #fff
  57. }
  58.  
  59. /* Regenerate button hover*/
  60. button.btn.relative.btn-neutral.whitespace-nowrap.-z-0.border-0.md\:border:hover {
  61. background: #9c1519;
  62. border: 1px solid #9c1519;
  63. transition: 0.25s;
  64. }
  65.  
  66. /* Add "response" to regenerate button*/
  67. button.btn.relative.btn-neutral.whitespace-nowrap.-z-0.border-0.md\:border .flex.w-full.gap-2.items-center.justify-center:after {
  68. content: "last response";
  69. }
  70.  
  71.  
  72. /* Move copy code to the left side */
  73. .flex.items-center.relative.text-gray-200.bg-gray-800.px-4.py-2.text-xs.font-sans.justify-between.rounded-t-md {
  74. display: flex;
  75. flex-direction: row-reverse;
  76. justify-content: flex-end;
  77. }
  78.  
  79. /* Change the copy code into a button */
  80. .flex.items-center.relative.text-gray-200.bg-gray-800.px-4.py-2.text-xs.font-sans.justify-between.rounded-t-md button.flex.ml-auto.gap-2 {
  81. margin: 0 10px 0 0;
  82. align-items: center;
  83. background: #3f51b5;
  84. padding: 5px 10px;
  85. border-radius: 5px;
  86. min-width: 60px;
  87. }
  88.  
  89. /* Hover state for copy button*/
  90. .flex.items-center.relative.text-gray-200.bg-gray-800.px-4.py-2.text-xs.font-sans.justify-between.rounded-t-md button.flex.ml-auto.gap-2:hover {
  91. background: #2196F3;
  92. transition: 0.25s;
  93. }
  94.  
  95. /* Increase size of copy code clipboard*/
  96. .flex.items-center.relative.text-gray-200.bg-gray-800.px-4.py-2.text-xs.font-sans.justify-between.rounded-t-md svg.h-4.w-4 {
  97. width: 25px;
  98. height: 25px;
  99. }
  100.  
  101. /* Increase the size of the main copy to clipboard*/
  102. button.flex.ml-auto.gap-2.rounded-md.p-1.hover\:bg-gray-100.hover\:text-gray-700.dark\:text-gray-400.dark\:hover\:bg-gray-700.dark\:hover\:text-gray-200.disabled\:dark\:hover\:text-gray-400 svg.h-4.w-4 {
  103. width: 50px;
  104. height: 50px;
  105.  
  106. }
  107.  
  108. /* Move clipboard icon below the response rating*/
  109. .text-gray-400.flex.self-end.lg\:self-center.justify-center.mt-2.gap-2.md\:gap-3.lg\:gap-1.lg\:absolute.lg\:top-0.lg\:translate-x-full.lg\:right-0.lg\:mt-0.lg\:pl-2.visible {
  110. display: flex;
  111. flex-direction: column-reverse;
  112.  
  113. }
Advertisement
Add Comment
Please, Sign In to add comment