Commit 26866fbf authored by Joel's avatar Joel

fix: siderbar and chat style

parent edad824e
...@@ -79,13 +79,13 @@ const Sidebar: FC<ISidebarProps> = ({ ...@@ -79,13 +79,13 @@ const Sidebar: FC<ISidebarProps> = ({
checkHasPinned() checkHasPinned()
}, [controlUpdateList]) }, [controlUpdateList])
const maxListHeight = isInstalledApp ? 'max-h-[30vh]' : 'max-h-[40vh]' const maxListHeight = (isInstalledApp || isUniversalChat) ? 'max-h-[30vh]' : 'max-h-[40vh]'
return ( return (
<div <div
className={ className={
cn( cn(
isInstalledApp ? 'tablet:h-[calc(100vh_-_74px)]' : 'tablet:h-[calc(100vh_-_3rem)]', (isInstalledApp || isUniversalChat) ? 'tablet:h-[calc(100vh_-_74px)]' : 'tablet:h-[calc(100vh_-_3rem)]',
'shrink-0 flex flex-col bg-white pc:w-[244px] tablet:w-[192px] mobile:w-[240px] border-r border-gray-200 mobile:h-screen', 'shrink-0 flex flex-col bg-white pc:w-[244px] tablet:w-[192px] mobile:w-[240px] border-r border-gray-200 mobile:h-screen',
) )
} }
......
...@@ -75,7 +75,7 @@ const List: FC<IListProps> = ({ ...@@ -75,7 +75,7 @@ const List: FC<IListProps> = ({
return ( return (
<nav <nav
ref={listRef} ref={listRef}
className={cn(className, 'shrink-0 space-y-1 bg-white pb-[85px] overflow-y-auto')} className={cn(className, 'shrink-0 space-y-1 bg-white overflow-y-auto')}
> >
{list.map((item) => { {list.map((item) => {
const isCurrent = item.id === currentId const isCurrent = item.id === currentId
......
...@@ -65,7 +65,7 @@ const List: FC<IListProps> = ({ ...@@ -65,7 +65,7 @@ const List: FC<IListProps> = ({
return ( return (
<nav <nav
ref={listRef} ref={listRef}
className={cn(className, 'shrink-0 space-y-1 bg-white pb-[85px] overflow-y-auto')} className={cn(className, 'shrink-0 space-y-1 bg-white overflow-y-auto')}
> >
{list.map((item) => { {list.map((item) => {
const isCurrent = item.id === currentId const isCurrent = item.id === currentId
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment