Removiendo outline de input focus

This commit is contained in:
Daniel Cortes
2020-06-05 23:03:40 -04:00
parent 790749b11b
commit 95851b80ca

View File

@@ -76,3 +76,8 @@ select {
scroll-behavior: auto !important; scroll-behavior: auto !important;
} }
} }
/* remove outline of input focus */
input:focus, textarea:focus {
outline: none;
}