Skip to content

Commit 00e8851

Browse files
committed
feat: #335 - Edit beta banner for mobile
1 parent fa4e6ee commit 00e8851

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

frontend/src/components/Header/Header.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const Header: React.FC<LoginFormProps> = ({ isAuthenticated, isSuperuser }) => {
101101
return (
102102
<header className="z-50 fixed w-full items-center no-print">
103103
<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">
104-
<p className="">
104+
<p className="hidden md:block">
105105
Welcome to Balancer’s first release! Found a bug or have feedback? Let us know {" "}
106106
<Link
107107
to="/feedback"
@@ -115,6 +115,13 @@ const Header: React.FC<LoginFormProps> = ({ isAuthenticated, isSuperuser }) => {
115115
</a>
116116
.
117117
</p>
118+
<p className="sm:block md:hidden">
119+
App is in beta; report issues to {" "}
120+
<a href="mailto:[email protected]" className="underline hover:border-blue-600 hover:text-blue-600 hover:no-underline">
121+
122+
</a>
123+
.
124+
</p>
118125
</div>
119126
<div
120127
className={

0 commit comments

Comments
 (0)