Add pencil icon to drafts

This commit is contained in:
Dmitry Kolosov 2020-06-21 23:02:58 +03:00
parent 4c54e7a425
commit 6e0b0b6fc7
4 changed files with 15 additions and 4 deletions

View file

@ -221,6 +221,17 @@ main h1 {
margin-left: 0.2em;
}
.post-title.draft::after {
content: "✎";
display: inline-block;
margin-left: 0.2em;
}
.post-title.favorite.draft::after {
content: "★ ✎";
display: inline-block;
margin-left: 0.2em;
}
article:not(:last-of-type) {
border-bottom: thin solid #f1f1f1;