Skip to content

Commit

Permalink
Change "Test Reports" copy, nav breakpoint change to 'xl'
Browse files Browse the repository at this point in the history
  • Loading branch information
stalgiag committed Oct 26, 2023
1 parent 0f1d4ee commit 8764211
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions client/components/App/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ a.nav-link {
.nav-link[aria-current='true']:after {
background: #0b60ab;
}
@media all and (min-width: 992px) {
@media all and (min-width: 1200px) {
.navbar-expand-lg .navbar-collapse ul {
display: flex;
flex-basis: auto;
Expand All @@ -79,7 +79,7 @@ a.nav-link {
margin: auto;
}
}
@media all and (max-width: 991px) {
@media all and (max-width: 1199px) {
.nav-link[aria-current='true']:after,
.nav-link:hover:after {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions client/components/App/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const App = () => {
<Container fluid>
<Navbar
bg="light"
expand="lg"
expand="xl"
aria-label="Menu"
expanded={isNavbarExpanded}
onToggle={() => setIsNavbarExpanded(previous => !previous)}
Expand Down Expand Up @@ -67,7 +67,7 @@ const App = () => {
'/report'
)}
>
Test Reports
AT Interoperability Reports
</Nav.Link>
</li>
<li>
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/Report.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Report = () => {
if (error) {
return (
<PageStatus
title="Test Reports | ARIA-AT"
heading="Test Reports"
title="AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
message={error.message}
isError
/>
Expand All @@ -29,8 +29,8 @@ const Report = () => {
if (loading) {
return (
<PageStatus
title="Loading - Test Reports | ARIA-AT"
heading="Test Reports"
title="Loading - AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
/>
);
}
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/Reports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const Reports = () => {
if (error) {
return (
<PageStatus
title="Test Reports | ARIA-AT"
heading="Test Reports"
title="AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
message={error.message}
isError
/>
Expand All @@ -24,8 +24,8 @@ const Reports = () => {
if (loading) {
return (
<PageStatus
title="Loading - Test Reports | ARIA-AT"
heading="Test Reports"
title="Loading - AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion client/components/Reports/SummarizeTestPlanReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const SummarizeTestPlanReport = ({ testPlanVersion, testPlanReports }) => {
<LinkContainer to="/reports">
<Breadcrumb.Item>
<FontAwesomeIcon icon={faHome} />
Test Reports
AT Interoperability Reports
</Breadcrumb.Item>
</LinkContainer>
<LinkContainer to={`/report/${testPlanVersion.id}`}>
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/SummarizeTestPlanReports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ const SummarizeTestPlanReports = ({ testPlanVersions }) => {
return (
<FullHeightContainer id="main" as="main" tabIndex="-1">
<Helmet>
<title>Test Reports | ARIA-AT</title>
<title>AT Interop Reports | ARIA-AT</title>
</Helmet>
<h1>Test Reports</h1>
<h1>Assistive Technology Interoperability Reports</h1>
<p>
There are no results to show just yet. Please check back
soon!
Expand All @@ -66,9 +66,9 @@ const SummarizeTestPlanReports = ({ testPlanVersions }) => {
return (
<FullHeightContainer id="main" as="main" tabIndex="-1">
<Helmet>
<title>Test Reports | ARIA-AT</title>
<title>AT Interop Reports | ARIA-AT</title>
</Helmet>
<h1>Test Reports</h1>
<h1>Assistive Technology Interoperability Reports</h1>
<h2>Introduction</h2>
<p>
This page offers a high-level view of all results which have
Expand Down
2 changes: 1 addition & 1 deletion client/components/Reports/SummarizeTestPlanVersion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SummarizeTestPlanVersion = ({ testPlanVersion, testPlanReports }) => {
<LinkContainer to="/reports">
<Breadcrumb.Item>
<FontAwesomeIcon icon={faHome} />
Test Reports
AT Interoperability Reports
</Breadcrumb.Item>
</LinkContainer>
<Breadcrumb.Item active>
Expand Down

0 comments on commit 8764211

Please sign in to comment.