Skip to content

Commit

Permalink
MOSIP-37719 - Admin Devices List page. (#1009)
Browse files Browse the repository at this point in the history
Signed-off-by: sudeep <[email protected]>
  • Loading branch information
Sudeep7353 authored Dec 10, 2024
1 parent 18e70b2 commit 6e92e7b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ function DeviceProviderServiceTab ( {activeSbi, sbiListPath, activeDevice, devic
<div className='flex text-xs bg-[#FCFCFC] font-bold space-x-16 items-start rounded-lg px-[1.5%] pt-[2%]'>
<div className={`flex-col justify-center`}>
<h6 id='sbi_tab' onClick={changeToSbi}
className={`${activeSbi ? "text-[#1447b2]" : "text-[#031640]"} mb-[12%] ${isLoginLanguageRTL ? "mr-[10%]" : "ml-[10%]"} cursor-pointer text-sm`}
className={`${activeSbi ? "text-[#1447b2]" : "text-[#031640]"} mb-[12%] cursor-pointer text-sm text-center`}
tabIndex="0" onKeyPress={(e) => onPressEnterKey(e, changeToSbi)}>
{t('deviceProviderServices.sbiDetails')}
</h6>
<div className={`h-1 w-20 ${activeSbi ? "bg-tory-blue" : "bg-transparent"} rounded-t-md`}></div>
</div>
<div className={`flex-col justify-center`}>
<h6 id='devices_tab' onClick={changeToDevice}
className={`${activeDevice ? "text-[#1447b2]" : "text-[#031640]"} mb-[12%] ${isLoginLanguageRTL ? "mr-[10%]" : "ml-[10%]"} cursor-pointer text-sm`}
className={`${activeDevice ? "text-[#1447b2]" : "text-[#031640]"} mb-[12%] cursor-pointer text-sm text-center`}
tabIndex="0" onKeyPress={(e) => onPressEnterKey(e, changeToDevice)}>
{t('deviceProviderServices.deviceDetails')}
</h6>
Expand Down

0 comments on commit 6e92e7b

Please sign in to comment.