File tree Expand file tree Collapse file tree
apps/console/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,15 +79,15 @@ function SectionHeader({ title }: { title: string }) {
7979function ToggleIndicator ( { enabled } : { enabled : boolean } ) {
8080 return (
8181 < div
82- className = { `w-8 h-4. 5 rounded-full relative transition-colors ${
82+ className = { `w-8 h-5 rounded-full relative transition-colors ${
8383 enabled ? 'bg-primary' : 'bg-muted'
8484 } `}
8585 role = "img"
8686 aria-label = { enabled ? 'Enabled' : 'Disabled' }
8787 >
8888 < div
89- className = { `absolute top-0.5 w-3.5 h-3.5 rounded-full bg-white shadow-sm transition-transform ${
90- enabled ? 'translate-x-4 ' : 'translate-x-0.5'
89+ className = { `absolute top-0.5 w-4 h-4 rounded-full bg-white shadow-sm transition-transform ${
90+ enabled ? 'translate-x-3.5 ' : 'translate-x-0.5'
9191 } `}
9292 />
9393 </ div >
You can’t perform that action at this time.
0 commit comments