Merge pull request #934 from Safelite/CSR-1059-add-position-absolute-to-fix-gap

Add position: absolute to input to fix gap between input and outline.
This commit is contained in:
bmauger 2023-01-13 15:20:32 -05:00 committed by GitHub
commit 5cd2e006ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -207,5 +207,6 @@ input {
opacity: 0;
height: 0.1px; // NOTE: cannot be zero or Safari can't put focus on it
width: 0;
position: absolute;
}
</style>