Skip to content
Merged
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
1 change: 1 addition & 0 deletions ieee-submodules/IEEE-s-Mindful-Devs-Bootcamp
Submodule IEEE-s-Mindful-Devs-Bootcamp added at 6736d0
1 change: 0 additions & 1 deletion web/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ html:not(.dark) body {
padding: 0 24px;
width: 100%;
}
}

/* ==================== ANIMATIONS ==================== */

Expand Down
2 changes: 1 addition & 1 deletion web/src/components/layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function Navbar({ activeSection }: NavbarProps) {
</button>
</PageWrapper>

<nav className={`mobile-nav${mobileMenuOpen ? " open" : ""}`} style={{ display: 'none' }}>
<nav className={`mobile-nav${mobileMenuOpen ? " open" : ""}`}>
<a href={withBasePath("/#screenshots")} onClick={() => setMobileMenuOpen(false)}>Screenshots</a>
<a href={withBasePath("/#features")} onClick={() => setMobileMenuOpen(false)}>Platform Highlights</a>
<a href={withBasePath("/#programs")} onClick={() => setMobileMenuOpen(false)}>Community Programs</a>
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/ui/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export const Navbar = (props: { tracking_id: string[] }) => {
<a href="#programs" onClick={() => setMobileMenuOpen(false)}>
Community Programs
</a>
<a href="https://uhsocial.in/docs" target="_blank" rel="noreferrer">
<a href="https://uhsocial.in/docs" target="_blank" rel="noreferrer" onClick={() => setMobileMenuOpen(false)}>
Read Articles
</a>
<Link
Expand Down
Loading