Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vaga/hugo-theme-m10c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpasztorpisti <pasztorpisti@gmail.com>2019-05-20 05:41:21 +0300
committerFabien <vaga@users.noreply.github.com>2019-05-22 10:30:46 +0300
commit0590f6feb8d67ed6b72a718cdbadd7b2e63a8cdc (patch)
tree60bd6a302165d7f7a86c9673f83c523bd6f8852e
parent1c8cc388a2c34ea76deba897f1b0bdb845f8ff84 (diff)
Remove separator line after last list item
-rw-r--r--assets/css/components/_posts_list.scss4
1 files changed, 3 insertions, 1 deletions
diff --git a/assets/css/components/_posts_list.scss b/assets/css/components/_posts_list.scss
index b70b32e..2fe0cf0 100644
--- a/assets/css/components/_posts_list.scss
+++ b/assets/css/components/_posts_list.scss
@@ -4,7 +4,9 @@
.posts-list-item {
list-style: none;
- border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
+ &:not(:last-child) {
+ border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
+ }
padding: 0.4em 0;
}