change style and timezone
All checks were successful
/ deploy (push) Successful in 11s

This commit is contained in:
gablaxy 2026-02-25 17:03:49 +01:00
parent 08573a0b59
commit 1244ace745
3 changed files with 6 additions and 7 deletions

View file

@ -68,7 +68,7 @@
padding: 1rem;
position: absolute;
top: 0;
left: 0;
left: 5px;
height: 100%;
background-color: var(--bg-color);
}
@ -164,7 +164,7 @@ summary:hover div {
}
.feed-url {
font-size: ;
/**/
}
.feed-timestamp {

View file

@ -1,5 +1,5 @@
{
"timezone_offset": -4.0,
"timezone_offset": 1.0,
"redirects": {
"medium": "scribe.rip"
}

View file

@ -14,14 +14,13 @@ const article = (item) => `
<small>
${item.feedUrl ? `<span class="item__feed-url monospace">${item.feedUrl}</span>` : ''}
${item.feedTitle ? `<span class="item__feed-title">${item.feedTitle}</span>` : ''}
<ul class="article-links">
<li class="monospace">${item.timestamp || ''}</li>
${item.comments ? `
<li><a href="${item.comments}" target='_blank' rel='noopener norefferer nofollow'>comments</a></li>
` : ''
}
<li><a href="https://txtify.it/${item.link}" target='_blank' rel='noopener norefferer nofollow'>txtify</a></li>
<li><a href="https://archive.md/${item.link}" target='_blank' rel='noopener norefferer nofollow'>archive.md</a></li>
</ul>
</small>
</article>
@ -87,7 +86,7 @@ export const template = ({ allItems, groups, errors, now }) => (`
<span class="feed-title">${feed.title}</span>
<span class="feed-url">
<small>
(${feed.feed})
(${feed.feedUrl})
</small>
</span>
<div class="feed-timestamp">
@ -101,7 +100,7 @@ export const template = ({ allItems, groups, errors, now }) => (`
`)}
<div class="default-text">
<p>🦉📚 welcome to bubo reader</p>
<p>welcome to bubo rss reader</p>
<p>select a feed group to get started</p>
</div>
</main>