Skip to content

Commit

Permalink
changed icons and removed aggressive animation
Browse files Browse the repository at this point in the history
  • Loading branch information
okk0 committed Jan 31, 2025
1 parent 2e8e47d commit 5f4d88f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
7 changes: 5 additions & 2 deletions src/routes/SidebarSmall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ import {
Files,
Bot,
BookMarked,
Sparkles
Sparkles,
BookOpen,
BookOpenCheck,
BookOpenText
} from "lucide-react";
import { Tooltip } from "@mui/material";

Expand Down Expand Up @@ -178,7 +181,7 @@ const SideBarSmall = ({ onCollapseChange }: SideBarSmallProps) => {
to="/library"
className={`sidebarsmalllink ${isActive("/library") ? "sidebarsmalllink-active" : ""}`}
>
<BookMarked size={24} />
<BookOpenText size={24} />
{!isCollapsed && <span id="library-title">Content Library</span>}
</Link>
</Tooltip>
Expand Down
6 changes: 3 additions & 3 deletions src/views/BidPlanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { BidContext } from "./BidWritingStateManagerView.tsx";
import { displayAlert } from "../helper/Alert";
import TenderLibrary from "../components/TenderLibrary.tsx";
import TenderAnalysis from "../components/TenderAnalysis.tsx";
import { ChevronDown, X } from "lucide-react";
import { ChevronDown, Fullscreen, X } from "lucide-react";
import BreadcrumbNavigation from "../routes/BreadCrumbNavigation.tsx";
import theme from "@/components/ui/theme.tsx";
import { ThemeProvider } from "@mui/material/styles";
Expand Down Expand Up @@ -220,8 +220,8 @@ const BidPlanner = () => {
onClick={handleOpenLibrary}
className="w-full mt-5 py-3 px-4 flex items-center justify-between bg-gray-100 hover:bg-gray-200 rounded-lg transition-colors duration-200"
>
<div className="flex items-center space-x-2">
<ChevronDown size={20} className="text-gray-600" />
<div className="flex items-center space-x-3">
<Fullscreen size={20} className="text-gray-600" />
<span className="text-gray-800 text-lg font-medium">
View Tender Library Documents
</span>
Expand Down
13 changes: 0 additions & 13 deletions src/views/Chatbot.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,6 @@
font-weight: 600;
}

@keyframes fadeInScaleUp {
from {
opacity: 0;
transform: scale(0.99);
/* Start slightly smaller */
}
to {
opacity: 1;
transform: scale(1);
/* Scale to actual size */
}
}

.chatbot-container,
.lib-container {
animation: fadeInScaleUp 0.1s ease-out;
Expand Down
2 changes: 1 addition & 1 deletion src/views/Q&AGenerator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ const QAGenerator = () => {

<div className="lib-container">
<div>
<h1 className="mt-3">Q&A Generator</h1>
<h1 className="mt-3">Respond to single-questions</h1>
<div>
<Row
className="justify-content-md-center"
Expand Down

0 comments on commit 5f4d88f

Please sign in to comment.