mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 13:22:58 -05:00
VIsual improvements for badges
This commit is contained in:
parent
1be3faa424
commit
620a394211
2 changed files with 5 additions and 1 deletions
|
@ -25,5 +25,5 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<img :src="src" class="w-5 h-5">
|
<img :src="src" class="w-3.5 h-3.5 rounded-sm">
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -102,6 +102,8 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div v-if="isLive" class="p-3 bg-ctp-crust rounded-lg w-full max-w-[15.625rem] flex flex-col">
|
<div v-if="isLive" class="p-3 bg-ctp-crust rounded-lg w-full max-w-[15.625rem] flex flex-col">
|
||||||
|
|
||||||
|
<!-- SYSTEM MESSAGES -->
|
||||||
<ul
|
<ul
|
||||||
class="overflow-y-scroll overflow-x-hidden whitespace-pre-wrap h-[46.875rem]"
|
class="overflow-y-scroll overflow-x-hidden whitespace-pre-wrap h-[46.875rem]"
|
||||||
ref="chatList"
|
ref="chatList"
|
||||||
|
@ -113,6 +115,8 @@ export default {
|
||||||
</li>
|
</li>
|
||||||
<li v-for="message in getChat()" :key="messages.indexOf(message)">
|
<li v-for="message in getChat()" :key="messages.indexOf(message)">
|
||||||
<div class="text-white inline-flex">
|
<div class="text-white inline-flex">
|
||||||
|
|
||||||
|
<!-- CHAT MESSAGE-->
|
||||||
<p class="text-sm items-center">
|
<p class="text-sm items-center">
|
||||||
|
|
||||||
<ul class="inline-flex space-x-1 pr-1">
|
<ul class="inline-flex space-x-1 pr-1">
|
||||||
|
|
Loading…
Reference in a new issue