Merge branch 'main' into fix/sort

This commit is contained in:
2022-11-03 17:00:41 +01:00
5 changed files with 5 additions and 1 deletions

View File

Binary file not shown.

View File

@@ -37,7 +37,7 @@ function tweetCell(tweet) {
</div> </div>
<span class="tweet-date"><em>${date.getHours()}:${date.getMinutes()}</em></span> <span class="tweet-date"><em>${date.getHours()}:${date.getMinutes()}</em></span>
</div> </div>
<span class="tweet-text">${tweet.text}</span> <a class="tweet-text" href = "https://www.twitter.com/${tweet.user.screen_name}/status/${tweet.id_str}" target = "_blank">${tweet.text}</a>
<div class="tweet-interactions"> <div class="tweet-interactions">
<div class="tweet-interaction tweet-likes"> <div class="tweet-interaction tweet-likes">
<span class="material-symbols-outlined">favorite</span> <span class="material-symbols-outlined">favorite</span>

View File

@@ -155,6 +155,10 @@ body {
font-weight: bold; font-weight: bold;
} }
.tweet-text {
color: white;
text-decoration: none;
}
.tweet-username { .tweet-username {
color: var(--main-light); color: var(--main-light);

View File

Binary file not shown.

View File

Binary file not shown.