Skip to content

Commit

Permalink
fixed bug with header
Browse files Browse the repository at this point in the history
  • Loading branch information
lalewis7 committed Jan 19, 2024
1 parent bf196a6 commit 318d17f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/csr_components/CopyEmail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export default function CopyEmail(){
overlay={tooltip}
onToggle={(show) => onToggle(show)}
>
<button className="nav-link d-flex align-items-center gap-2 lh-1" onClick={copy}>
<EnvelopeFill className="ms-1" /><span className="h6 m-0">{process.env.NEXT_PUBLIC_EMAIL}</span>
<button className="nav-link d-flex align-items-center gap-2 lh-1 nav-link" onClick={copy}>
<EnvelopeFill /><span className="h5 m-0">{process.env.NEXT_PUBLIC_EMAIL}</span>
</button>
</OverlayTrigger>
</>
Expand Down
2 changes: 1 addition & 1 deletion app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function RootLayout({ children }) {
<header className={`navbar navbar-expand-${mobileBreakpoint} fixed-top`}>
<nav className="container">
<Link href="/" className={`navbar-brand d-flex align-items-center ${roboto_mono.className}`}>
<img src={'icon.png'} width={28} className="me-3" />
<img src={'/icon.png'} width={28} className="me-3" />
<span>{process.env.NEXT_PUBLIC_NAME}</span>
</Link>
<div className={`d-none d-${mobileBreakpoint}-block navbar-collapse`}>
Expand Down

0 comments on commit 318d17f

Please sign in to comment.