19 lines
345 B
SCSS
19 lines
345 B
SCSS
|
|
.table {
|
||
|
|
width: 100%;
|
||
|
|
margin-bottom: 0;
|
||
|
|
border-collapse: collapse;
|
||
|
|
}
|
||
|
|
.table-light {
|
||
|
|
background-color: #f8f9fa;
|
||
|
|
}
|
||
|
|
.table-hover tbody tr:hover {
|
||
|
|
background-color: rgba(0, 0, 0, 0.075);
|
||
|
|
}
|
||
|
|
.clickable-row {
|
||
|
|
cursor: pointer;
|
||
|
|
transition: background-color 0.15s ease-in-out;
|
||
|
|
}
|
||
|
|
.clickable-row:hover {
|
||
|
|
background-color: rgba(13, 110, 253, 0.1);
|
||
|
|
}
|