Add position: absolute to input to fix gap between input and outline.

This commit is contained in:
Bryan Mauger 2023-01-13 14:01:19 -05:00
parent 5eec64c483
commit a950382d15

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>