I been working on a website. I wanted to use a 'linear-gradient', but it has some many pixels inside of it.
html,
body {
margin: 0;
padding: 0;
position: relative;
height: 100vh;
width: 100vw;
overflow-x: hidden;
background: linear-gradient(125deg, rgb(54, 54, 54) -20%, black);
background-repeat: no-repeat;
}
You see waves in it; and I want to fix that. Anyone with some tips or tricks?
Thanks in advance!