saicaca / fuwari

✨A static blog template built with Astro.
https://fuwari.vercel.app
MIT License
1.41k stars 326 forks source link

Blue border appears on Search in Firefox #181

Closed World-X closed 3 weeks ago

World-X commented 2 months ago

After using this template for about a week now (it's pretty good by the way!), I've noticed some things that could be improved.

For one, a small issue that I found, and very easy to fix, is that in Firefox, by default, the Search component shows a blue border when focused, which looks ugly, in my opinion. I know this isn't intended because I tried it on Google Chrome and the border wasn't there.

Screenshot_3

The solution is as simple as adding this code to Search.svelte, inside <style> tags.

input:focus {
  outline: 0;
}