From e7e0c939f4d9c22dd29a5ecf341fb862344b2134 Mon Sep 17 00:00:00 2001 From: "plebeius.eth" Date: Fri, 12 Apr 2024 22:21:16 +0200 Subject: [PATCH] fix home logo, add padding to catalog post row --- src/components/catalog-row/catalog-row.module.css | 11 ++++++++++- src/components/catalog-row/catalog-row.tsx | 3 +++ src/views/home/home.module.css | 1 - 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/components/catalog-row/catalog-row.module.css b/src/components/catalog-row/catalog-row.module.css index 7d948925..55141cc1 100644 --- a/src/components/catalog-row/catalog-row.module.css +++ b/src/components/catalog-row/catalog-row.module.css @@ -3,7 +3,7 @@ flex-direction: row; justify-content: center; text-align: center; - padding-bottom: 20px; + padding-top: 20px; } .post { @@ -81,4 +81,13 @@ .post a { color: unset; text-decoration: none; +} + +.postMenuBtn { + position: absolute; + display: inline-block; + padding-left: 5px; + + width: 1em; + height: 1em } \ No newline at end of file diff --git a/src/components/catalog-row/catalog-row.tsx b/src/components/catalog-row/catalog-row.tsx index b645a26a..614969a7 100644 --- a/src/components/catalog-row/catalog-row.tsx +++ b/src/components/catalog-row/catalog-row.tsx @@ -91,6 +91,9 @@ const CatalogPost = ({ post }: { post: Comment }) => { / L: {linkCount} )} + + ▶ +
diff --git a/src/views/home/home.module.css b/src/views/home/home.module.css index 6211db12..ce973af0 100644 --- a/src/views/home/home.module.css +++ b/src/views/home/home.module.css @@ -8,7 +8,6 @@ } .logo img { - width: 300px; height: 120px; }