Updated the save button and add hover effect to the remove button
This commit is contained in:
parent
cf9a2e6990
commit
70cdff4c7d
|
|
@ -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 />}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue