diff options
author | Miguel Ángel Moreno <mail@migalmoreno.com> | 2022-12-30 21:28:19 +0100 |
---|---|---|
committer | Miguel Ángel Moreno <mail@migalmoreno.com> | 2022-12-30 21:29:58 +0100 |
commit | 756876def2e3ff1955b07946d0569912264aa905 (patch) | |
tree | 7363a15a1b35dad1501ae83834c1616bc822c4f3 /src/frontend/tau/components | |
parent | b0a746e04ae211f62060cce6a7ec18a127fc97ef (diff) |
feat(frontend): Amend small style nits
Diffstat (limited to 'src/frontend/tau/components')
-rw-r--r-- | src/frontend/tau/components/comments.cljs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/tau/components/comments.cljs b/src/frontend/tau/components/comments.cljs index 044f87a..9802647 100644 --- a/src/frontend/tau/components/comments.cljs +++ b/src/frontend/tau/components/comments.cljs @@ -16,10 +16,10 @@ [:div.w-12 [:a {:href (rfe/href :tau.routes/channel nil {:url uploader-url}) :title name} [:img.rounded-full.object-cover.min-w-full.min-h-full {:src uploader-avatar}]]]]) - [:div.ml-2 + [:div.ml-4 [:div.flex.items-center (when pinned? - [:i.fa-solid.fa-thumbtack.mr-2]) + [:i.fa-solid.fa-thumbtack.mr-2.text-xs]) [:a {:href (rfe/href :tau.routes/channel nil {:url uploader-url}) :title name} [:h1.text-gray-300.font-bold uploader-name]] (when uploader-verified? @@ -33,7 +33,7 @@ (timeago/format upload-date))]] (when like-count [:div.flex.items-center.my-2 - [:i.fa-solid.fa-thumbs-up] + [:i.fa-solid.fa-thumbs-up.text-xs] [:p.mx-1 like-count]]) (when hearted-by-uploader? [:div.relative.w-4.h-4.mx-2 |