Updated the save button and add hover effect to the remove button

This commit is contained in:
GURSAL PRATHAMESH APPASAHEB 2024-10-03 14:46:41 +05:30 committed by GitHub
parent cf9a2e6990
commit 70cdff4c7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -160,7 +160,7 @@ export const SettingsPopup: FC<{ getRef?: Ref<any> }> = (props) => {
</div> </div>
</button> </button>
<button <button
className="h-[24px] w-[88px] rounded-[4px] border-2 border-customColor21 flex justify-center items-center gap-[4px]" className="h-[24px] w-[88px] rounded-[4px] border-2 border-customColor21 hover:text-red-600 flex justify-center items-center gap-[4px]"
type="button" type="button"
> >
<div> <div>
@ -177,7 +177,7 @@ export const SettingsPopup: FC<{ getRef?: Ref<any> }> = (props) => {
/> />
</svg> </svg>
</div> </div>
<div className="text-[12px]" onClick={remove}> <div className="text-[12px] " onClick={remove}>
Remove Remove
</div> </div>
</button> </button>
@ -191,7 +191,7 @@ export const SettingsPopup: FC<{ getRef?: Ref<any> }> = (props) => {
</div> </div>
{!getRef && ( {!getRef && (
<div className="justify-end flex"> <div className="justify-end flex">
<Button type="submit">Save</Button> <Button type="submit" className='rounded-md'>Save</Button>
</div> </div>
)} )}
{!!user?.tier?.team_members && isGeneral && <TeamsComponent />} {!!user?.tier?.team_members && isGeneral && <TeamsComponent />}