Skip to content

Commit

Permalink
WIP fix ego form overflow styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jthrilly committed Dec 7, 2023
1 parent f572b0c commit 76050bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/(interview)/interview/[interviewId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default async function Page({
const { protocol, ...serverSession } = interview;

return (
<div className="flex h-[100vh] flex-col bg-[var(--nc-background)] text-[var(--nc-text)]">
<div className="flex h-[100vh] max-h-[100vh] flex-col bg-[var(--nc-background)] text-[var(--nc-text)]">
<NoSSRWrapper>
<InterviewShell
serverProtocol={protocol}
Expand Down
2 changes: 1 addition & 1 deletion app/(interview)/interview/_components/UserBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function UserBanner() {
}

return (
<div className="relative isolate flex items-center overflow-hidden bg-gray-200 px-6 text-primary">
<div className="relative isolate flex min-h-[70px] items-center overflow-hidden bg-gray-200 px-6 text-primary">
<div
className="absolute left-[max(-7rem,calc(50%-52rem))] top-1/2 -z-10 -translate-y-1/2 transform-gpu blur-2xl"
aria-hidden="true"
Expand Down
2 changes: 1 addition & 1 deletion lib/interviewer/containers/ProtocolScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const ProtocolScreen = () => {
const currentStage = useSelector(getCurrentStage);

return (
<motion.div className='flex h-full w-screen flex-row' initial={{ opacity: 0 }} animate={{ opacity: 1 }}>
<motion.div className='flex flex-1 w-screen flex-row' initial={{ opacity: 0 }} animate={{ opacity: 1 }}>
<Navigation />
<AnimatePresence mode='wait' initial={false}>
<Stage
Expand Down

0 comments on commit 76050bc

Please sign in to comment.