Tweak iv font sizing

This commit is contained in:
dangered wolf 2023-08-23 15:01:57 -04:00
parent 728997e1f2
commit af1e7b44cc
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -135,7 +135,7 @@ const generateTweetFooter = (tweet: APITweet, isQuote = false): string => {
: notApplicableComment, : notApplicableComment,
aboutSection: isQuote aboutSection: isQuote
? '' ? ''
: `<h3>About author</h3> : `<h2>About author</h2>
{pfp} {pfp}
<h2>${author.name}</h2> <h2>${author.name}</h2>
<p><a href="${author.url}">@${author.screen_name}</a></p> <p><a href="${author.url}">@${author.screen_name}</a></p>
@ -219,8 +219,8 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
} <a href="${tweet.url}">View original post</a> } <a href="${tweet.url}">View original post</a>
</section> </section>
<article> <article>
<sub>Instant View ( Beta) - <a href="${tweet.url}">View original</a></sub>
<h1>${tweet.author.name} (@${tweet.author.screen_name})</h1> <h1>${tweet.author.name} (@${tweet.author.screen_name})</h1>
<p>Instant View ( Beta) - <a href="${tweet.url}">View original</a></p>
${generateTweet(tweet)} ${generateTweet(tweet)}
</article>`; </article>`;