Skip to content
Merged
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
9 changes: 8 additions & 1 deletion frontend/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const Header: React.FC<LoginFormProps> = ({ isAuthenticated, isSuperuser }) => {
return (
<header className="z-50 fixed w-full items-center no-print">
<div className="w-full items-center justify-center border-b border-gray-300 bg-blue-100 p-1 text-center text-sm font-light text-gray-500 lg:flex">
<p className="">
<p className="hidden md:block">
Welcome to Balancer’s first release! Found a bug or have feedback? Let us know {" "}
<Link
to="/feedback"
Expand All @@ -115,6 +115,13 @@ const Header: React.FC<LoginFormProps> = ({ isAuthenticated, isSuperuser }) => {
</a>
.
</p>
<p className="sm:block md:hidden">
App is in beta; report issues to {" "}
<a href="mailto:balancerteam@codeforphilly.org" className="underline hover:border-blue-600 hover:text-blue-600 hover:no-underline">
balancerteam@codeforphilly.org
</a>
.
</p>
</div>
<div
className={
Expand Down