Skip to content

Commit

Permalink
Melhora contraste do tema branco
Browse files Browse the repository at this point in the history
  • Loading branch information
naaando committed Nov 29, 2024
1 parent 8b0d051 commit 26999a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const props = defineProps({
>
<div class="p-5">
<div
class="rounded-full w-full aspect-video bg-white drop-shadow-sm flex justify-center items-center"
class="rounded-full w-full aspect-video bg-white drop-shadow-lg flex justify-center items-center"
>
<div
class="text-center"
Expand Down
4 changes: 2 additions & 2 deletions resources/js/Pages/Room.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const groupedVotes = computed(() => {
:username="username"
></Deck>
<div v-if="finished" class="p-2 space-x-4 mb-8 text-white items-center justify-center fixed bottom-0 left-0 w-full flex">
<div v-if="finished" class="p-2 space-x-4 mb-8 text-gray-900 dark:text-white items-center justify-center fixed bottom-0 left-0 w-full flex">
<div class="text-center">
Total
<span class="font-bold block">{{ count }} votes</span>
Expand All @@ -152,7 +152,7 @@ const groupedVotes = computed(() => {
:visible="true"
></Card>
<div class="text-center font-bold">
<div class="text-center font-bold mt-1">
({{ (votes / count * 100).toFixed(0) }}%)
</div>
</div>
Expand Down

0 comments on commit 26999a5

Please sign in to comment.