fix home logo, add padding to catalog post row

This commit is contained in:
plebeius.eth
2024-04-12 22:21:16 +02:00
parent 2fc12bbafe
commit e7e0c939f4
3 changed files with 13 additions and 2 deletions
@@ -3,7 +3,7 @@
flex-direction: row; flex-direction: row;
justify-content: center; justify-content: center;
text-align: center; text-align: center;
padding-bottom: 20px; padding-top: 20px;
} }
.post { .post {
@@ -81,4 +81,13 @@
.post a { .post a {
color: unset; color: unset;
text-decoration: none; text-decoration: none;
}
.postMenuBtn {
position: absolute;
display: inline-block;
padding-left: 5px;
width: 1em;
height: 1em
} }
@@ -91,6 +91,9 @@ const CatalogPost = ({ post }: { post: Comment }) => {
/ L: <b>{linkCount}</b> / L: <b>{linkCount}</b>
</span> </span>
)} )}
<span className={styles.postMenuBtn} title='Thread Menu'>
</span>
</div> </div>
<Link to={postLink}> <Link to={postLink}>
<div className={styles.teaser}> <div className={styles.teaser}>
-1
View File
@@ -8,7 +8,6 @@
} }
.logo img { .logo img {
width: 300px;
height: 120px; height: 120px;
} }