Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/RepositoriesCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const RepositoriesCard: React.FC<RepositoriesCardProps> = ({ repositories }) =>
<div className="mt-6 flex items-center justify-center text-center">
<button
onClick={() => setShowAllRepositories(!showAllRepositories)}
className="mt-4 flex items-center justify-center text-blue-400 hover:underline"
className="mt-4 flex items-center justify-center px-0 text-blue-400 hover:underline"
>
{showAllRepositories ? (
<>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/ToggleableList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const ToggleableList = ({
<Button
disableAnimation
onPress={toggleShowAll}
className="mt-4 flex items-center bg-transparent text-blue-400 hover:underline"
className="mt-4 flex items-center bg-transparent px-0 text-blue-400 hover:underline"
>
{showAll ? (
<>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/TopContributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const TopContributors = ({
<Button
disableAnimation
onPress={toggleContributors}
className="mt-4 flex items-center bg-transparent text-blue-400 hover:underline"
className="mt-4 flex items-center bg-transparent px-0 text-blue-400 hover:underline"
>
{showAllContributors ? (
<>
Expand Down