This guide will show you how to change the font size of find and replace in Atom. This is definitely a preference feature. You could make it small to get it out of your way, or larger to help see what you are searching for.
- On the main menu, navigate to
File
>Stylesheet
- Next at the bottom of the style sheet, we are going to enter this code. Essentialy we are targeting the find and replace element, and changing the font size associated with it. Here we are increasing to
225%
. Once you have made these changes, save the file.// Change the font size for find and replace
.find-and-replace{
font-size:225%;
} - Now you can see the find and replace is much larger! It might be hard to tell from this image, but you can compare to the text above.
- If you want to change it back to normal, you can set the
font-size
to100%
or you can remove the code. Once you save it will be back to normal.
As you can see it was easy to change the font size of find and replace in atom. Let me know in the comments below if you found this type of tutorial helpful!
What would you like to learn about Atom next? This application has so many features that we could write articles for days! Especially if we were to dive into the plugin! Let me know in the comments below.
If you would like to suggest a new article or video to be released, please reach out via the Contact Page. I look forward to hearing your feedback and providing content that is helpful for you!