1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 17:51:46 +02:00

Merge pull request #44 from alexgleason/stray-pixels

Fix stray pixels on focused inputs such as checkboxes and radios
This commit is contained in:
Abdullah Samman
2018-12-08 00:16:14 +02:00
committed by GitHub

View File

@@ -35,3 +35,8 @@ button,
[type="submit"] {
-webkit-appearance: none;
}
// Prevent stray pixels on focused inputs such as checkboxes and radios
input {
outline: 0;
}