Skip to content

Commit

Permalink
styling and edited langgraph dependencies path
Browse files Browse the repository at this point in the history
  • Loading branch information
ElishaKay committed Jul 14, 2024
1 parent dae8c3b commit 934e03a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion langgraph.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"python_version": "3.11",
"dependencies": [
"."
"./multi_agents"
],
"graphs": {
"agent": "./multi_agents/agent.py:graph"
Expand Down
12 changes: 6 additions & 6 deletions multi_agents/gpt_researcher_nextjs/components/Answer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,27 +116,27 @@ export default function Answer({ answer }: { answer: string }) {
/* Add more styles as needed */
/* Table of Contents Styling */
h2 + ul {
ul {
list-style-type: none;
padding-left: 0;
margin-top: 1em;
margin-bottom: 1em;
}
h2 + ul > li {
ul > li {
margin-bottom: 0.5em;
}
h2 + ul > li > ul {
ul > li > ul {
margin-left: 1em;
list-style-type: disc;
}
h2 + ul > li > ul > li {
ul > li > ul > li {
margin-bottom: 0.3em;
}
h2 + ul > li > ul > li > ul {
ul > li > ul > li > ul {
margin-left: 1em;
list-style-type: circle;
}
h2 + ul > li > ul > li > ul > li {
ul > li > ul > li > ul > li {
margin-bottom: 0.2em;
}
}
Expand Down
2 changes: 1 addition & 1 deletion multi_agents/gpt_researcher_nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Image from "next/image";

const Header = () => {
return (
<div className="container h-[60px] px-4 lg:h-[80px] lg:px-0">
<div className="container h-[60px] px-4 lg:h-[80px] lg:px-0 pt-10">
<div className="grid h-full grid-cols-12">
<div className="col-span-5"></div>
<div className="col-span-2 flex items-center justify-center">
Expand Down

0 comments on commit 934e03a

Please sign in to comment.