@@ -68,8 +68,8 @@ export const AnimatedToggle = ({
68
68
{ /* Toggle switch */ }
69
69
< div
70
70
className = { `
71
- w-10 h-6 flex items-center rounded-full p-1 transition-all duration-300 ease-in-out
72
- ${ isOn ? "bg-background-400 " : "bg-background-200 " }
71
+ w-10 h-6 flex items-center rounded-full p-1 transition-all duration-300 ease-in-out
72
+ ${ isOn ? "bg-toggled-background " : "bg-untoggled-background " }
73
73
` }
74
74
>
75
75
< div
@@ -178,10 +178,14 @@ export const FullSearchBar = ({
178
178
suppressContentEditableWarning = { true }
179
179
/>
180
180
< div
181
- className = { `flex flex-nowrap ${ showingSidebar ? " 2xl:justify-between" : "2xl:justify-end" } justify-between 4xl:justify-end w-full max-w-full items-center space-x-3 py-3 px-4` }
181
+ className = { `flex flex-nowrap ${
182
+ showingSidebar ? " 2xl:justify-between" : "2xl:justify-end"
183
+ } justify-between 4xl:justify-end w-full max-w-full items-center space-x-3 py-3 px-4`}
182
184
>
183
185
< div
184
- className = { `-my-1 flex-grow 4xl:hidden ${ ! showingSidebar && "2xl:hidden" } ` }
186
+ className = { `-my-1 flex-grow 4xl:hidden ${
187
+ ! showingSidebar && "2xl:hidden"
188
+ } `}
185
189
>
186
190
{ ( ccPairs . length > 0 || documentSets . length > 0 ) && (
187
191
< HorizontalSourceSelector
@@ -208,7 +212,11 @@ export const FullSearchBar = ({
208
212
>
209
213
< SendIcon
210
214
size = { 28 }
211
- className = { `text-emphasis ${ disabled || ! query ? "bg-disabled-submit-background" : "bg-submit-background" } text-white p-1 rounded-full` }
215
+ className = { `text-emphasis ${
216
+ disabled || ! query
217
+ ? "bg-disabled-submit-background"
218
+ : "bg-submit-background"
219
+ } text-white p-1 rounded-full`}
212
220
/>
213
221
</ button >
214
222
</ div >
0 commit comments