From e17be94391c5a232ac543f371b35ca6585786f36 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Sun, 20 Feb 2022 15:58:40 +0000
Subject: [PATCH] feat: move info to post-meta and improve styles

---
 assets/scss/partials/components/_post.scss |   34 ++++++++++++++++++++++++++++++++--
 1 files changed, 32 insertions(+), 2 deletions(-)

diff --git a/assets/scss/partials/components/_post.scss b/assets/scss/partials/components/_post.scss
index 447fd25..df4cc35 100644
--- a/assets/scss/partials/components/_post.scss
+++ b/assets/scss/partials/components/_post.scss
@@ -5,8 +5,38 @@
     background-color: t('accent');
   }
 
-  &__more {
-    font-size: 1.4rem;
+  &__meta {
+    display: flex;
+    list-style: none;
+    padding: 0;
+
+    &-item {
+      &:not(:last-child) {
+        margin-right: 1.25rem;
+      }
+    }
+
+    &-icon {
+      @include ltr {
+        margin-right: 2px;
+      }
+
+      @include rtl {
+        margin-left: 2px;
+      }
+    }
+
+    &-text {
+      &:not(:last-child) {
+        @include ltr {
+          margin-right: 4px;
+        }
+
+        @include rtl {
+          margin-left: 4px;
+        }
+      }
+    }
   }
 
   &__thumbnail {

--
Gitblit v1.10.0