1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-01 02:01:56 +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

@@ -364,6 +364,10 @@ button,
-webkit-appearance: none;
}
input {
outline: 0;
}
@keyframes blink {
0% {
opacity: 1;

File diff suppressed because one or more lines are too long

2
css/nes.min.css vendored

File diff suppressed because one or more lines are too long

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;
}