dc-copy/src/Sidebar.tsx
2025-04-02 01:06:24 +09:00

41 lines
No EOL
1.7 KiB
TypeScript

export function LoginBox() {
return (
<div className="bg-white relative mb-4 border border-blue-primary">
<div className="h-[43px] leading-[44px] text-sm text-blue-primary px-[18px]">
<strong className="inline-block max-w-[153px] pr-0.5 align-top
text-custom-blue-dark
truncate whitespace-nowrap cursor-pointer overflow-hidden">
.
</strong>
</div>
<div className="bg-[#f3f3f3] h-9 leading-9 text-center px-[18px] whitespace-nowrap
flex justify-center
*:not-first:before:content-['|']
*:not-first:before:text-[11px]
*:not-first:before:p-[0_10px_0_13px]
*:not-first:before:text-[#ccc]
">
<span>
<a className="text-gray-800 text-[12px] font-bold">
MY갤로그
<em className="bg-[url('/sp_loginout.png')] bg-no-repeat"></em>
</a>
</span>
<span>
<a className="text-gray-800 text-[12px] font-bold">
<span className="absolute overflow-hidden invisible m-[-1px] w-0 top-[-9999px] text-[0px]"> </span>
</a>
</span>
<span>
<a className="text-gray-800 text-[12px] font-bold">
<em className="bg-[url('/sp_loginout.png')] bg-no-repeat inline-block w-[14px] h-[14px] mr-1.5 align-[-3px] bg-[0px_-27px]"></em>
</a>
</span>
</div>
</div>
)
}