Fix hover color for last row of repo file list (#15018)

This commit is contained in:
Mike L
2021-03-18 19:05:26 +01:00
committed by GitHub
parent e8ad6c1ff3
commit 0e95a41ccd

View File

@ -343,6 +343,16 @@
cursor: default;
}
tr:last-of-type {
td:first-child {
border-bottom-left-radius: var(--border-radius);
}
td:last-child {
border-bottom-right-radius: var(--border-radius);
}
}
tr:hover {
background-color: #ffffee;
}