Skip to content

Commit

Permalink
fix text issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LMacPhail committed Sep 25, 2024
1 parent 1f41983 commit ed0fae0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function App() {
return (
<>
<Banner>
<p className="w-full text-center text-sm sticky top-0">
<p className="w-full text-center text-sm sticky top-0 text-black">
Future Labour MPs is no longer being maintained and was last updated
June 2024. If you’d like to incorporate the data into your own dataset
contact us at <strong>mps&#64;mvmtresearch&#46;org</strong>
Expand Down
4 changes: 3 additions & 1 deletion src/components/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ import React from "react";
export const Banner: React.FC<{
children: React.ReactNode;
}> = ({ children }) => {
return <div className={`bg-accent p-2 w-full min-h-2 `}>{children}</div>;
return (
<div className={`bg-accent p-2 w-full min-h-2 text-black`}>{children}</div>
);
};

0 comments on commit ed0fae0

Please sign in to comment.