Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const MeetingPanel = ({ pageType, leftTab }: MeetingPanelProps) => {
meetingStartTime={meetingStartTime}
speeches={speeches}
/>
<div className="bottom-16pxr absolute inset-x-0 z-1 flex justify-center">
<div className="absolute inset-x-0 z-1 flex justify-center">
{isMeetingPage ? (
<GnbBottomRecorderBar
connect={connect}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const RightPanel = ({
<CategoryOption label={label} active />
</div>
{/* 목록 부분 */}
<div className="scrollbar-component h-[calc(100dvh-var(--tab-height))] overflow-y-auto">
<div className="scrollbar-component flex h-[calc(100dvh-var(--tab-height))] flex-col items-center overflow-y-auto">
{/* 설명 부분 */}
<div className="gap-6pxr mt-36pxr mb-32pxr flex flex-col items-center">
<div className="gap-3pxr flex items-center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ const SpeechPanel = ({ speeches, isMeetingPage, meetingStartTime }: SpeechPanelP

useEffect(() => {
if (isMeetingPage && lastItemRef.current) {
lastItemRef.current.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
lastItemRef.current.scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'center' });
}
}, [isMeetingPage, speeches.length]);

return (
<div
className={clsx(
'pl-20pxr pb-80pxr pr-14pxr scrollbar-component w-full overflow-y-auto',
'pl-20pxr pr-14pxr scrollbar-component w-full overflow-y-auto',
isMeetingPage
? 'pt-20pxr h-[calc(100dvh_-_var(--gnb-top-height)_-_var(--meeting-header-height))]'
: 'pt-10pxr h-[calc(100dvh_-_var(--gnb-top-height)_-_var(--meeting-header-height)_-_var(--tab-height))]',
? 'pt-20pxr h-[calc(100dvh_-_var(--gnb-top-height)_-_var(--meeting-header-height)_-_var(--meeting-speech-panel-pb-height))] pb-[var(--meeting-speech-panel-pb-height)]'
: 'pt-10pxr pb-80pxr h-[calc(100dvh_-_var(--gnb-top-height)_-_var(--meeting-header-height)_-_var(--tab-height))]',
)}
>
{noSpeeches ? (
Expand Down
2 changes: 0 additions & 2 deletions src/features/ai-meeting-manager/hooks/useLevelFetching.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,12 @@ const useMicLevelFetching = (micCtlRef: React.MutableRefObject<MicController | n
const setOn = () => {
if (!currentRef.current) {
currentRef.current = true;
console.debug('[level] => ON (setIsFetching(true))');
setIsFetching(true);
}
};
const setOff = () => {
if (currentRef.current) {
currentRef.current = false;
console.debug('[level] => OFF (setIsFetching(false))');
setIsFetching(false);
}
};
Expand Down
1 change: 1 addition & 0 deletions src/styles/custom-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

/* ai-meeting-manager */
--meeting-header-height: var(--spacing-104pxr);
--meeting-speech-panel-pb-height: var(--spacing-100pxr);
}

@layer utilities {
Expand Down
Loading