Skip to content

Instantly share code, notes, and snippets.

@csharpforevermore
Last active November 11, 2020 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save csharpforevermore/11f8dbcb85e284394fc68a906cca39ba to your computer and use it in GitHub Desktop.
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.
/* 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