Disable inputs outline

This commit is contained in:
2021-12-06 15:11:15 +01:00
parent efb0c26500
commit cc67b79779

View File

@@ -54,6 +54,9 @@ button {
[data-focus-visible-added], *:focus-visible {
outline: 1px dashed $color-secondary;
}
input[type="text"], input[type="email"], input[type="password"] {
outline: none;
}
// Selection
::selection { color: #fff; background: $color-secondary; }