Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Front/Accessibility: alt text #567

Merged
merged 2 commits into from
Apr 29, 2020
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions src/components/about/HowItWorks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const HowItWorks = () => (
<div className="how-it-works">
<h1>How It Works</h1>
<div className="grid-container">
<MobileSVG />
<DataServerSVG />
<GrowthSVG />
<DataVizSVG />
<MobileSVG alt="Mobile Telephone" />
<DataServerSVG alt="Cloud Database" />
<DataVizSVG alt="Laptop Computer Displaying Data Visualizations" />
<GrowthSVG alt="Upturned Hand Holding Seedling" />
<p>Community members post reports via the City&apos;s easy-to-use mobile application.</p>
<p>
Reports are consolidated and entered into a central database and requests are
Expand Down
4 changes: 2 additions & 2 deletions src/components/about/WhatIs311Data.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const WhatIs311Data = () => (
</p>
<div className="logos level">
<span className="level-item">
<EmpowerLaSVG />
<EmpowerLaSVG alt="EmpowerLA Neighborhood Council Logo" />
</span>
<span className="level-item">
<HackforLaSVG />
<HackforLaSVG alt="Hack for LA Logo" />
</span>
</div>
<p>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/about/_howitworks.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.how-it-works{
margin: 75px 5em 5em 100px;
margin: 75px 15em 5em 15em;

h1 {
text-align: center;
Expand All @@ -15,7 +15,7 @@
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-row-gap: 20px;
grid-column-gap: 75px;
grid-column-gap: 50px;
justify-items: center;
}
}
4 changes: 2 additions & 2 deletions src/styles/about/_whatis311data.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.main-text {
margin-top: 48px;
margin-left: 5em;
margin-right: 5em;
margin-left: 15em;
margin-right: 15em;

h1 {
text-align: center;
Expand Down