You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The solution is as simple as adding this code to Search.svelte, inside <style> tags.
input:focus {
outline:0;
}
The text was updated successfully, but these errors were encountered:
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.
The solution is as simple as adding this code to
Search.svelte
, inside<style>
tags.The text was updated successfully, but these errors were encountered: