diff --git a/app/react-native/src/server/index.html.js b/app/react-native/src/server/index.html.js index 1ab3ca5d59ba..ad3cd82ae69d 100644 --- a/app/react-native/src/server/index.html.js +++ b/app/react-native/src/server/index.html.js @@ -36,6 +36,11 @@ export default function(publicPath, options) { .btn:hover{ background-color: #eee } + + /* Remove blue outline defined by the user argent*/ + :focus { + outline: none !important; + } diff --git a/app/react/src/server/index.html.js b/app/react/src/server/index.html.js index dc5b0afc42b8..ef364b1c9a4d 100644 --- a/app/react/src/server/index.html.js +++ b/app/react/src/server/index.html.js @@ -67,6 +67,11 @@ export default function({ assets, publicPath, headHtml }) { .btn:hover{ background-color: #eee } + + /* Remove blue outline defined by the user argent*/ + :focus { + outline: none !important; + } ${headHtml}