https://i.sstatic.net/qCqV7.jpg I'm experimenting with applying a gradient to the entire HTML page by using this CSS class that I created for the "body" tag:
.gradient{
font-family: Roboto Black;
background-repeat: no-repeat;
background-attachment: fixed;
height: 100%;
background: #234199;
background: -webkit-linear-gradient(#234199 0%, #7db9e8 100%);
background: -o-linear-gradient(#234199 0%, #7db9e8 100%);
background: linear-gradient(#234199 0%, #7db9e8 100%);
filter: progid:DXImageTransform.Microsoft.gradient(
startColorstr='#234199', endColorstr='#7db9e8', GradientType=0 );
}
However, I've noticed a sharp edge where the sidebar extends beyond the viewport area, causing the gradient to repeat itself (as shown in the image). Is there a way to resolve this issue?