mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-15 12:46:04 +05:30
Normalize tap styles for webkit browsers
This commit is contained in:
parent
16d3b8a928
commit
1d85a8cfa7
@ -34,6 +34,9 @@ const store = applyMiddleware(
|
|||||||
|
|
||||||
userFactory(store)
|
userFactory(store)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
// allow :active styles in mobile Safary
|
||||||
|
document.addEventListener("touchstart", () => {}, true);
|
||||||
|
|
||||||
ReactDOM.render(
|
ReactDOM.render(
|
||||||
<ReduxProvider store={store}>
|
<ReduxProvider store={store}>
|
||||||
<IntlProvider>
|
<IntlProvider>
|
||||||
|
@ -40,3 +40,12 @@ p {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
textarea,
|
||||||
|
button,
|
||||||
|
select,
|
||||||
|
label,
|
||||||
|
a {
|
||||||
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user