mirror of
https://github.com/JonasunderscoreJones/blog.jonasjones.dev.git
synced 2025-10-22 18:49:19 +02:00
fixed padding issues on post head
This commit is contained in:
parent
9394ae0a33
commit
4a658e8be4
1 changed files with 7 additions and 2 deletions
|
@ -128,7 +128,7 @@ function copyLink() {
|
|||
<div class="post">
|
||||
<p class="postHead">by</p>
|
||||
<h3 class="postHead">{postAuthor}</h3>
|
||||
<p class="postHead">{postDate}</p>
|
||||
<p class="postHead postDate">{postDate}</p>
|
||||
<div class="copy-link" on:click={copyLink}>
|
||||
<i class="fas fa-link"></i>
|
||||
<span>{clickText}</span>
|
||||
|
@ -157,9 +157,14 @@ function copyLink() {
|
|||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
p.postDate {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
p.postHead, h3.postHead {
|
||||
display: inline-block;
|
||||
padding: 0 10px;
|
||||
padding: 0 5px;
|
||||
color: gray;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue