JSFiddle - React, Tailwind, and code Playground

background: linear-gradient

by Jennifer Perrin

CSS

html,body{ 
  margin: 0;
  width: 100%;
  height: 100%;
}
body{
  background: #eaeef5;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#eaeef5), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(-45deg, #eaeef5 0%, #ffffff 100%); 
  background: linear-gradient(135deg, #eaeef5 0%, #ffffff 100%); 
}