From 9db3b769db9492b8db06cb82e352215ce78be0ae Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 2 Mar 2016 18:22:09 -0800 Subject: [PATCH] no bottom border on last torrent list item --- main/index.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main/index.css b/main/index.css index 92cd0ce9..a2f5eaec 100644 --- a/main/index.css +++ b/main/index.css @@ -162,11 +162,14 @@ body.drag::before { background-repeat: no-repeat; background-size: cover; background-position: 0 50%; - border-bottom: 1px solid rgb(20, 20, 20); transition: all 0.05s ease-out; position: relative; } +.torrent:not(:last-child) { + border-bottom: 1px solid rgb(20, 20, 20); +} + .torrent:hover { -webkit-filter: brightness(1.1); }