Skip to content

Commit b361122

Browse files
authored
Merge pull request #404 from StubberG3/balancer/394/mobile
Balancer/394/mobile
2 parents fa4e6ee + 6f9826a commit b361122

File tree

3 files changed

+103
-157
lines changed

3 files changed

+103
-157
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:balancerteam@codeforphilly.org" className="underline hover:border-blue-600 hover:text-blue-600 hover:no-underline">
121+
balancerteam@codeforphilly.org
122+
</a>
123+
.
124+
</p>
118125
</div>
119126
<div
120127
className={

frontend/src/pages/Help/DataSources.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const data: DataProps = {
2222
function HowTo() {
2323
return (
2424
<Layout>
25-
<div className="mt-20 flex w-full max-w-6xl flex-col items-center justify-center px-8">
25+
<div className="mt-20 flex min-w-[445px] w-full max-w-6xl flex-col items-center justify-center px-8">
2626
<div className="mt-10 h-44 w-44">
2727
<LineChart />
2828
</div>

0 commit comments

Comments
 (0)