Fix main color in BudgetCategoriesSection
The main color in BudgetCategoriesSection was incorrectly set. This commit fixes the color to neuro-income.
This commit is contained in:
@@ -97,7 +97,7 @@ const SyncSettings = () => {
|
|||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div className="space-y-0.5">
|
<div className="space-y-0.5">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<CloudUpload className="h-5 w-5 text-neuro-accent" />
|
<CloudUpload className="h-5 w-5 text-neuro-income" />
|
||||||
<Label htmlFor="sync-toggle" className="text-base font-medium">
|
<Label htmlFor="sync-toggle" className="text-base font-medium">
|
||||||
데이터 클라우드 동기화
|
데이터 클라우드 동기화
|
||||||
</Label>
|
</Label>
|
||||||
@@ -110,7 +110,7 @@ const SyncSettings = () => {
|
|||||||
id="sync-toggle"
|
id="sync-toggle"
|
||||||
checked={enabled}
|
checked={enabled}
|
||||||
onCheckedChange={handleSyncToggle}
|
onCheckedChange={handleSyncToggle}
|
||||||
className="data-[state=checked]:bg-neuro-accent"
|
className="data-[state=checked]:bg-neuro-income"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -122,7 +122,7 @@ const SyncSettings = () => {
|
|||||||
<button
|
<button
|
||||||
onClick={handleManualSync}
|
onClick={handleManualSync}
|
||||||
disabled={syncing}
|
disabled={syncing}
|
||||||
className="neuro-button py-1 px-3 flex items-center gap-1 bg-neuro-accent text-white hover:bg-neuro-accent/90"
|
className="neuro-button py-1 px-3 flex items-center gap-1 bg-neuro-income text-white hover:bg-neuro-income/90"
|
||||||
>
|
>
|
||||||
<RefreshCw className={`h-4 w-4 ${syncing ? 'animate-spin' : ''}`} />
|
<RefreshCw className={`h-4 w-4 ${syncing ? 'animate-spin' : ''}`} />
|
||||||
<span>{syncing ? '동기화 중...' : '지금 동기화'}</span>
|
<span>{syncing ? '동기화 중...' : '지금 동기화'}</span>
|
||||||
@@ -131,7 +131,7 @@ const SyncSettings = () => {
|
|||||||
<Button
|
<Button
|
||||||
onClick={() => navigate('/login')}
|
onClick={() => navigate('/login')}
|
||||||
size="sm"
|
size="sm"
|
||||||
className="py-1 px-3 bg-neuro-accent text-white hover:bg-neuro-accent/90"
|
className="py-1 px-3 bg-neuro-income text-white hover:bg-neuro-income/90"
|
||||||
>
|
>
|
||||||
로그인하여 동기화
|
로그인하여 동기화
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
Reference in New Issue
Block a user