fix: modal scrolling on small devices (#527)
* fix: propmt side not showing on small devices * added the robot icon while chat is loading * fix: sidbar position * fix: modal not scrolling on small devices * fix: overlap between the modal and icons
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import { IconRobot } from '@tabler/icons-react';
|
||||
import { IconDots } from '@tabler/icons-react';
|
||||
import { FC } from 'react';
|
||||
|
||||
interface Props {}
|
||||
interface Props { }
|
||||
|
||||
export const ChatLoader: FC<Props> = () => {
|
||||
return (
|
||||
@@ -10,7 +11,9 @@ export const ChatLoader: FC<Props> = () => {
|
||||
style={{ overflowWrap: 'anywhere' }}
|
||||
>
|
||||
<div className="m-auto flex gap-4 p-4 text-base md:max-w-2xl md:gap-6 md:py-6 lg:max-w-2xl lg:px-0 xl:max-w-3xl">
|
||||
<div className="min-w-[40px] text-right font-bold">AI:</div>
|
||||
<div className="min-w-[40px] items-end">
|
||||
<IconRobot size={30} />
|
||||
</div>
|
||||
<IconDots className="animate-pulse" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user