no bottom border on last torrent list item

This commit is contained in:
Feross Aboukhadijeh
2016-03-02 18:22:09 -08:00
parent 6099454a73
commit 9db3b769db

View File

@@ -162,11 +162,14 @@ body.drag::before {
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
background-position: 0 50%; background-position: 0 50%;
border-bottom: 1px solid rgb(20, 20, 20);
transition: all 0.05s ease-out; transition: all 0.05s ease-out;
position: relative; position: relative;
} }
.torrent:not(:last-child) {
border-bottom: 1px solid rgb(20, 20, 20);
}
.torrent:hover { .torrent:hover {
-webkit-filter: brightness(1.1); -webkit-filter: brightness(1.1);
} }