Added basic TikTok and Kick support

This commit is contained in:
nuttylmao
2025-06-27 22:55:08 +10:00
parent 82713a4b1a
commit a3e0123cb9
5 changed files with 635 additions and 60 deletions
+44
View File
@@ -52,6 +52,7 @@ html {
.normalScrollDirection {
bottom: 0;
}
.reverseScrollDirection {
display: flex;
top: 0;
@@ -193,6 +194,45 @@ li {
font-weight: 700;
}
.tiktok-gift {
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
padding: 20px 40px;
border-radius: var(--border-radius);
max-width: 100%;
background: linear-gradient(#262626BF, #000000BF) !important;
}
.tiktok-gift-avatar {
height: 3em;
margin: 1px;
border-radius: 50%;
justify-content: left;
flex-shrink: 0;
}
.tiktok-gift-message {
flex-grow: 1;
white-space: nowrap; /* keeps text in a single line */
overflow: hidden; /* hides overflowed content */
text-overflow: ellipsis; /* adds the "..." at the end */
}
.tiktok-gift-sticker {
height: 2.5em;
flex-shrink: 0;
justify-content: flex-end;
}
#tiktok-gift-repeat-count {
justify-content: flex-end;
font-size: 1.5em;
font-style: italic;
font-weight: 500;
}
/*****************/
/** CARD COLORS **/
/*****************/
@@ -245,6 +285,10 @@ li {
background: linear-gradient(#466edbbf, #1c56f5bf) !important;
}
.tiktok {
background: linear-gradient(#262626BF, #000000BF) !important;
}
.blank {
background: #adadad00 !important;
}