apps/web: use outline-secondary for retract button

This commit is contained in:
vchikalkin 2023-11-25 12:27:26 +03:00
parent 6c2e204499
commit 30d705a618
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ export function Buttons() {
Отмена Отмена
</Button> </Button>
<Button <Button
intent="secondary" intent="outline-secondary"
onClick={() => { onClick={() => {
setFormStatus('pending'); setFormStatus('pending');
resetValidation(); resetValidation();

View File

@ -21,7 +21,7 @@ const variants = cva(
'outline-secondary': 'outline-secondary':
'border border-primary text-primary-500 hover:bg-primary-500 hover:text-white', 'border border-primary text-primary-500 hover:bg-primary-500 hover:text-white',
secondary: secondary:
'bg-primary-100 text-primary-500 border border-transparent hover:bg-primary-200 hover:text-primary-600', 'bg-primary-50 text-primary-500 border border-transparent hover:bg-primary-100 hover:text-primary-600',
}, },
}, },
} }