Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix(3102): feedback fixes #40

Merged
merged 10 commits into from
Sep 18, 2024
Prev Previous commit
Next Next commit
fix: add spacing between paragraph
  • Loading branch information
VGau committed Sep 13, 2024
commit bba81ff2e78b81e697938b5105119f0d1b4b29bf
4 changes: 2 additions & 2 deletions bridge-ui/src/components/Collapse.tsx
Original file line number Diff line number Diff line change
@@ -6,8 +6,8 @@ type CollapseProps = {
export const Collapse: React.FC<CollapseProps> = ({ title, children }) => {
return (
<details className="collapse collapse-arrow rounded-none border-2 border-card bg-cardBg hover:border-primary">
<summary className="collapse-title text-xl font-medium text-white">{title}</summary>
<div className="collapse-content">{children}</div>
<summary className="collapse-title px-8 text-xl font-medium text-white">{title}</summary>
<div className="collapse-content flex flex-col gap-2 px-8 text-justify">{children}</div>
</details>
);
};
Loading