We are utilizing a basic Bootstrap 4 (alpha 6) table that has the hover feature enabled.
<table class="table table-hover">
<tbody>
<tr>
<td>Sample 1</td>
<td>Data 1</td>
</tr>
<tr>
<td>Sample 2</td>
<td>Data 2</td>
</tr>
</tbody>
</table>
You can find more information about Bootstrap 4 table options here. It seems like Bootstrap 4 uses hover states in its SCSS files.
How can we customize the row hover color using SCSS in the most effective way?