mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-14 18:40:11 +01:00
ca8bf52cce
* fix black text for custom messages text * fix file upload icon being stretched * center github, docs, and discord icons in sidebar * fix chat container being cut off on right side and tighter spacing between message * fix default chat container being cut off on right side * on create new workspace, take user to the workspace they just created instead of the home page * add border to chat container and click outside user menu to close * fix borders around all chat and settings containers to be consistent * fix padding for default messages * fix spacing between workspace items in sidebar * fix margin around right side of chat, default, and settings containers to be the same as the left sidebar --------- Co-authored-by: timothycarambat <rambat1010@gmail.com>
61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
import { isMobile } from "react-device-detect";
|
|
import * as Skeleton from "react-loading-skeleton";
|
|
import "react-loading-skeleton/dist/skeleton.css";
|
|
|
|
export default function LoadingChat() {
|
|
const highlightColor = "#3D4147";
|
|
const baseColor = "#2C2F35";
|
|
return (
|
|
<div
|
|
style={{ height: isMobile ? "100%" : "calc(100% - 32px)" }}
|
|
className="transition-all duration-500 relative md:ml-[2px] md:mr-[8px] md:my-[16px] md:rounded-[26px] bg-main-gradient w-full h-full overflow-y-scroll"
|
|
>
|
|
<Skeleton.default
|
|
height="100px"
|
|
width="100%"
|
|
highlightColor={highlightColor}
|
|
baseColor={baseColor}
|
|
count={1}
|
|
className="max-w-full md:max-w-[75%] p-4 rounded-b-2xl rounded-tr-2xl rounded-tl-sm mt-6"
|
|
containerClassName="flex justify-start"
|
|
/>
|
|
<Skeleton.default
|
|
height="100px"
|
|
width={isMobile ? "70%" : "45%"}
|
|
baseColor={baseColor}
|
|
highlightColor={highlightColor}
|
|
count={1}
|
|
className="max-w-full md:max-w-[75%] p-4 rounded-b-2xl rounded-tr-2xl rounded-tl-sm mt-6"
|
|
containerClassName="flex justify-end"
|
|
/>
|
|
<Skeleton.default
|
|
height="100px"
|
|
width={isMobile ? "55%" : "30%"}
|
|
baseColor={baseColor}
|
|
highlightColor={highlightColor}
|
|
count={1}
|
|
className="max-w-full md:max-w-[75%] p-4 rounded-b-2xl rounded-tr-2xl rounded-tl-sm mt-6"
|
|
containerClassName="flex justify-start"
|
|
/>
|
|
<Skeleton.default
|
|
height="100px"
|
|
width={isMobile ? "88%" : "25%"}
|
|
baseColor={baseColor}
|
|
highlightColor={highlightColor}
|
|
count={1}
|
|
className="max-w-full md:max-w-[75%] p-4 rounded-b-2xl rounded-tr-2xl rounded-tl-sm mt-6"
|
|
containerClassName="flex justify-end"
|
|
/>
|
|
<Skeleton.default
|
|
height="160px"
|
|
width="100%"
|
|
baseColor={baseColor}
|
|
highlightColor={highlightColor}
|
|
count={1}
|
|
className="max-w-full md:max-w-[75%] p-4 rounded-b-2xl rounded-tr-2xl rounded-tl-sm mt-6"
|
|
containerClassName="flex justify-start"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|