change(ui): small ui fixes

This commit is contained in:
nick-delirium 2023-03-15 16:01:48 +01:00 committed by Delirium
parent 12d7ff4f99
commit cbd4e4f669
2 changed files with 3 additions and 1 deletions

View file

@ -34,6 +34,7 @@ function HealthModal({
const handleClose = () => {
setShowModal(false);
};
return (
<div
style={{
@ -103,7 +104,7 @@ function HealthModal({
</div>
</div>
<div className={'p-4 mt-auto w-full border-t border-figmaColors-divider'}>
<Button variant={'primary'} className={'ml-auto'}>
<Button disabled={!healthResponse.overallHealth} loading={isLoading} variant={'primary'} className={'ml-auto'}>
Create Account
</Button>
</div>

View file

@ -79,6 +79,7 @@ function HealthWidget({
onClick={() => setShowModal(true)}
healthOk={false}
name={service.name}
isSelectable
/>
</React.Fragment>
))}