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 src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export default function Navbar() {
<button
onClick={() => navigate('/settings')}
style={{ background: 'none', border: '1px solid var(--border)', color: 'var(--text2)', borderRadius: 6, padding: '5px 10px', fontSize: 12, display: 'flex', alignItems: 'center', gap: 5 }}
className='h-[-webkit-fill-available]'
>
<FiSettings size={13} /> Settings
</button>
Expand Down
1 change: 1 addition & 0 deletions src/components/ThemeToggle.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default function ThemeToggle() {
alignItems: "center",
gap: 5,
}}
className='h-[-webkit-fill-available]'
title={`Switch to ${theme === "dark" ? "light" : "dark"} theme`}
>
{theme === "dark" ? <FiSun size={13} /> : <FiMoon size={13} />}
Expand Down
4 changes: 2 additions & 2 deletions src/components/layout/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { HiOutlineMail } from "react-icons/hi";
const footerLinks = [
{
label: "Documentation",
href: "/docs",
href: "https://github.com/AOSSIE-Org/OrgExplorer/blob/main/README.md",
Comment thread
rahul-vyas-dev marked this conversation as resolved.
},
{
label: "Terms of Service",
Expand All @@ -23,7 +23,7 @@ const footerLinks = [
},
{
label: "API Status",
href: "/status",
href: "/settings#api-status",
},
];

Expand Down
Loading