Accessibility for ReactRedux (#11571)

Accessibility for ReactRedux
This commit is contained in:
Ryan Brandenburg 2019-07-01 14:52:14 -07:00 committed by GitHub
parent 8d41acba67
commit 038768137f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View File

@ -5,9 +5,11 @@ import Home from './components/Home';
import Counter from './components/Counter';
import FetchData from './components/FetchData';
import './custom.css'
export default () => (
<Layout>
<Route exact path='/' component={Home}/>
<Route exact path='/' component={Home} />
<Route path='/counter' component={Counter} />
<Route path='/fetch-data/:startDateIndex?' component={FetchData} />
</Layout>

View File

@ -0,0 +1,14 @@
/* Provide sufficient contrast against white background */
a {
color: #0366d6;
}
code {
color: #E01A76;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}

View File

@ -1235,6 +1235,7 @@
"ClientApp/src/store/WeatherForecasts.ts",
"ClientApp/src/App.tsx",
"ClientApp/src/App.test.tsx",
"ClientApp/src/custom.css",
"ClientApp/src/index.tsx",
"ClientApp/src/react-app-env.d.ts",
"ClientApp/src/registerServiceWorker.ts",