Skip to content

Commit cd62304

Browse files
fix: Home page work(link and button size fix)
1 parent 5faf824 commit cd62304

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/components/Navbar.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export default function Navbar() {
6666
<button
6767
onClick={() => navigate('/settings')}
6868
style={{ background: 'none', border: '1px solid var(--border)', color: 'var(--text2)', borderRadius: 6, padding: '5px 10px', fontSize: 12, display: 'flex', alignItems: 'center', gap: 5 }}
69+
className='h-[-webkit-fill-available]'
6970
>
7071
<FiSettings size={13} /> Settings
7172
</button>

src/components/ThemeToggle.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default function ThemeToggle() {
1818
alignItems: "center",
1919
gap: 5,
2020
}}
21+
className='h-[-webkit-fill-available]'
2122
title={`Switch to ${theme === "dark" ? "light" : "dark"} theme`}
2223
>
2324
{theme === "dark" ? <FiSun size={13} /> : <FiMoon size={13} />}

src/components/layout/Footer.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { HiOutlineMail } from "react-icons/hi";
1111
const footerLinks = [
1212
{
1313
label: "Documentation",
14-
href: "/docs",
14+
href: "https://github.com/AOSSIE-Org/OrgExplorer/blob/main/README.md",
1515
},
1616
{
1717
label: "Terms of Service",
@@ -23,7 +23,7 @@ const footerLinks = [
2323
},
2424
{
2525
label: "API Status",
26-
href: "/status",
26+
href: "/settings#api-status",
2727
},
2828
];
2929

0 commit comments

Comments
 (0)