Skip to content

Commit

Permalink
Clean up text/font
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmarcia committed Sep 25, 2023
1 parent 12b56bd commit e59f45b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
5 changes: 4 additions & 1 deletion components/GeneralFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ type GeneralFilterProps = {

export const GeneralFilter = ({ filter, setFilter }: GeneralFilterProps) => {
return (
<input type="text" value={filter} onChange={(e) => setFilter(e.target.value)} placeholder="Search Repositories" className="flex-1 border rounded-sm p-2 mb-4 z-10" />
<input type="text" value={filter} onChange={(e) => setFilter(e.target.value)} placeholder="Search Repositories" className="flex-1 border rounded-sm p-2 mb-4" />
);
};



16 changes: 3 additions & 13 deletions components/HappyCommitsInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,15 @@ export const HappyCommitsInfo = ({filter, setFilter}: FilterProps) => {
<div
style={{
color: "white",
fontSize: 32,
fontFamily: "Inter",
fontWeight: "400",
wordWrap: "break-word"
fontSize: 32
}}
>
happy commits
</div>
<div
style={{
color: "white",
fontSize: 48,
fontFamily: "Inter",
fontWeight: "400",
wordWrap: "break-word"
fontSize: 48
}}
>
open source
Expand All @@ -36,14 +30,10 @@ export const HappyCommitsInfo = ({filter, setFilter}: FilterProps) => {
style={{
color: "white",
fontSize: 16,
fontFamily: "Inter",
fontWeight: "400",
wordWrap: "break-word",
paddingBottom: "3%"
}}
>
Our mission is to curate a list of open source projects with missions that are driven by
social impact. Let’s commit to a better future!
Commiting to a better future. Our mission is to curate a list of open source projects with missions that are driven by social impact. Helping others is the best way to feel happy so lets all work together to build a better tomorrow. One commit at a time.
</div>
<GeneralFilter
filter={filter}
Expand Down

0 comments on commit e59f45b

Please sign in to comment.