Last active
November 11, 2020 08:13
-
-
Save csharpforevermore/11f8dbcb85e284394fc68a906cca39ba to your computer and use it in GitHub Desktop.
Fix styling on dev.to create post page. The height of the heading is too low for the font-size, so we'll lower the font-size. We'll also lower the font-size for the actual main body text so we don't omit the first character by having the window scroll slightly when you are editing a line of text and the text wraps to a newline.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Fix the title */ | |
#article-form-title{ | |
font-size:12px !important; | |
} | |
/* Fix the content body text */ | |
#article_body_markdown{ | |
font-size: 11px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment