diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-10 10:47:13 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-10 10:47:13 -0500 |
commit | 2260999b43361cda968d8179810996960cd14330 (patch) | |
tree | 2b10f947e722a5a67f836a31b6ce5f2589f7c225 | |
parent | 8e7c5fb32f4ccafee26982abfd3506f545b711c7 (diff) | |
download | mccd.space-2260999b43361cda968d8179810996960cd14330.tar.gz mccd.space-2260999b43361cda968d8179810996960cd14330.tar.bz2 mccd.space-2260999b43361cda968d8179810996960cd14330.zip |
Update width
Diffstat (limited to '')
-rw-r--r-- | index.njk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ <a class="link" style="margin-right: 0.5rem;" href="https://git.mccd.space">git</a> </div> <div class="posts code" style="display: flex; align-items: center; "> - <div style="margin-left: 1rem; display: inline-block; width: 4rem; margin-right: 0.8rem; align-items: center; font-weight: 700; color: black; font-size: 12px"> + <div style="margin-left: 1rem; display: inline-block; width: 5rem; margin-right: 0.8rem; align-items: center; font-weight: 700; color: black; font-size: 12px"> Date </div> <div style="display: flex; font-weight: 700; color: black; font-size: 12px"> @@ -45,7 +45,7 @@ {% for post in collections.post | reverse %} <div class="posts"> <div style="margin-left: 1rem; display: flex; "> - <p class="code date" style="display: inline-block; width: 4rem; margin-right: 0.8rem; font-size: 12px; margin-top: 4px; align-items: center; margin-bottom: 0px">{{post.date.toLocaleDateString("en-GB").replaceAll("/","-")}}</p> + <p class="code date" style="display: inline-block; width: 5rem; margin-right: 0.8rem; font-size: 12px; margin-top: 4px; align-items: center; margin-bottom: 0px">{{post.date.toLocaleDateString("en-GB").replaceAll("/","-")}}</p> <a style="font-size: 12px; align-items: end; display:flex" class="link front-text" href="{{ post.url | url }}">{{post.data.title}}</a> </div> </div> |