File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
apps/website/src/components/make-it-yours Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,10 @@ export default component$(() => {
177177 themeComputedObjectSig . value . primary = primary ;
178178 setTheme ( await themeStoreToThemeClasses$ ( ) ) ;
179179 } }
180- class = { cn ( 'flex h-4 w-4 items-center justify-center rounded-none' ) }
180+ class = { cn (
181+ 'flex h-4 w-4 items-center justify-center rounded-none' ,
182+ isActive && 'border-ring border-2' ,
183+ ) }
181184 >
182185 { ( primary === 'primary-slate-900' ||
183186 primary === 'primary-gray-900' ||
@@ -190,7 +193,6 @@ export default component$(() => {
190193 < span
191194 class = { cn (
192195 'flex h-3 w-3 shrink-0 rounded-none' ,
193- isActive && 'border-ring border-2' ,
194196 primary === 'primary-slate-100' && 'bg-slate-100' ,
195197 primary === 'primary-gray-100' && 'bg-gray-100' ,
196198 primary === 'primary-zinc-100' && 'bg-zinc-100' ,
You can’t perform that action at this time.
0 commit comments