Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fe/bugfix/#600 헤더가 잘려서 보이는 문제 #604

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/business/hooks/overlay/useOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function useOverlay() {
openOverlay: (OverlayElement: CreateOverlayElement) => {
mount(
id,
<div className="fixed top-[50%] left-[50%] -translate-x-[50%] -translate-y-[50%] z-10">
<div className="fixed top-[50%] left-[50%] -translate-x-[50%] -translate-y-[50%] z-50">
<OverlayElement
key={String(new Date())}
opened={opened}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/common/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ interface HeaderProps {

export function Header({ rightItems }: HeaderProps) {
return (
<header className="sticky w-full h-48 flex justify-between items-center surface-content text-default px-8 py-5 z-50">
<header className="fixed top-0 w-full h-48 flex justify-between items-center surface-content text-default px-8 py-5 z-20">
<LogoButton />
{rightItems?.map((item, index) => (
<div
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/AIChatPage/AIChatPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function AIChatPage({}: AIChatPageProps) {
: []
}
/>
<div className="w-h-full pl-[5%] pr-[5%] pb-[5%] lg:pl-[25%] lg:pr-[25%]">
<div className="w-h-full pt-50 pl-[5%] pr-[5%] pb-[5%] lg:pl-[25%] lg:pr-[25%]">
<ChatContainer
messages={messages}
inputDisabled={inputDisabled}
Expand Down
Loading