React Markdown Previewer

Recently done markdown previewer, guys what you think? However if i change the placeholder and style it i get an error on test 6… Project: https://codepen.io/mav1283/pen/oMBRXZ?editors=0010

from css point of view i would delete padding: 4rem; from body and i would add it under media queries like:

  1. under @media screen and (min-width: 0px)
  body{
    padding: 1rem;
  }

2.under @media screen and (min-width: 800px)

  body{
    padding: 4rem;
  }

because on mobile a 4rem padding eats a lot of your display space.

1 Like

Thanks! yup it’s eating too much space.