I'm facing an issue with getting the background color to cover the entire body of my webpage. Currently, it only captures a certain size and when there is scrolling on the window, two shades of colors appear. I want the background color to span the entirety of the body. Is this achievable? Below is the code I am currently using.
lang-css
body {
background: repeating-linear-gradient(-155deg, #ea4853, rgba(125, 44, 160, 0.9));
background-repeat: repeat;
width: 100%;
min-height: 400vh;
background-size: cover;
background-attachment: fixed;
}
<div class="center-content">
<div class="flex-column" style="margin-top: 50px;">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12">
<div class="card">
<h1>Historial </h1>
<div class="card-body" style="margin-top: -90px;">
<div class="row">
<div class="col-md-6" style="margin-top: 80px;">
<div style="display: block;">
<canvas baseChart width="400" height="300" [datasets]="lineChartData" [labels]="lineChartLabels" [options]="lineChartOptions" [colors]="lineChartColors" [legend]="lineChartLegend" [chartType]="lineChartType" (chartHover)="chartHovered($event)" (chartClick)="chartClicked($event)"></canvas>
</div>
</div>
<div class="col-md-6 table-log">
<table class="table table-responsive table-condensed">
<tr>
<th *ngFor="let label of lineChartLabels">{{label}}</th>
</tr>
<tr *ngFor="let d of lineChartData">
<td *ngFor="let label of lineChartLabels; let j=index">{{d && d.data[j]}}</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>