login box

This commit is contained in:
monoid 2025-04-02 01:06:24 +09:00
parent ea83864396
commit 7bbaebc4d0
2 changed files with 54 additions and 5 deletions

View file

@ -5,6 +5,7 @@ import { Footer } from './Footer';
import { GalleryContent } from './Gallery';
import { GalleryTitleHeader } from './GalleryTitleHeader';
import { GlobalNavigationBar, Header, VisitHistory } from './Header';
import { LoginBox } from './Sidebar';
import { GalleryTable, TableRowData } from './table';
@ -205,11 +206,18 @@ function App() {
<CommentPagination currentPage={1} maxPage={2} />
<CommentInput />
<PostListControls owner />
<div style={{
width: "840px",
}}>
<GalleryTable data={tableData} />
<PostListControls />
<div className='flex justify-between'>
<div style={{
width: "840px",
}}>
<GalleryTable data={tableData} />
<PostListControls />
</div>
<div style={{
width: "300px",
}}>
<LoginBox />
</div>
</div>
</section>
</main>

41
src/Sidebar.tsx Normal file
View file

@ -0,0 +1,41 @@
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>
)
}