Skip to content

Commit

Permalink
making awesome docs responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
wonderful-coyote committed Nov 5, 2023
1 parent 4132a3d commit e744a2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions awesome-oss-docs/src/component/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Header = () => {
text="Youtube"
/>
<SocialMediaLink
icon={<BsGithub className="text-xl" />}
icon={<BsGithub className="text-2xl" />}
text="Github"
/>
</div>
Expand All @@ -46,7 +46,7 @@ const MobileMenu = () => (
<BsDiscord className="mr-2" />
<BsTwitter className="mr-2" />
<BsYoutube className="mr-2" />
<BsGithub />
<BsGithub className="mr-2"/>
</button>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion awesome-oss-docs/src/component/card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import logo from "../component/imgs/logo.svg";

export default function Card() {
const onGoToClick = (url) => {
window.open(url, "_blank"); // Open the URL in a new tab
window.open(url, "_blank");
};

// Check if docs is not undefined or null before mapping over it
Expand Down

0 comments on commit e744a2b

Please sign in to comment.