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

Fix stray pixels on focused inputs such as checkboxes and radios

This commit is contained in:
Alex Gleason
2018-11-30 11:57:35 -05:00
parent 9461eaa909
commit 478271b4fe
4 changed files with 11 additions and 2 deletions

View File

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