Skip to content

Commit

Permalink
Update:Incrase icon font size for more context menu and player loading
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Jul 15, 2024
1 parent 2998d3b commit b1bc472
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/components/player/PlayerPlaybackControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</template>
<template v-else>
<div class="cursor-pointer p-2 shadow-sm bg-accent flex items-center justify-center rounded-full text-primary mx-8 animate-spin">
<span class="material-symbols">autorenew</span>
<span class="material-symbols text-2xl">autorenew</span>
</div>
</template>
<div class="flex-grow" />
Expand Down
4 changes: 2 additions & 2 deletions client/components/ui/ContextMenuDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="relative h-9 w-9" v-click-outside="clickOutsideObj">
<slot :disabled="disabled" :showMenu="showMenu" :clickShowMenu="clickShowMenu" :processing="processing">
<button v-if="!processing" type="button" :disabled="disabled" class="relative h-full w-full flex items-center justify-center shadow-sm pl-3 pr-3 text-left focus:outline-none cursor-pointer text-gray-100 hover:text-gray-200 rounded-full hover:bg-white/5" aria-haspopup="listbox" :aria-expanded="showMenu" @click.stop.prevent="clickShowMenu">
<span class="material-symbols" :class="iconClass">more_vert</span>
<span class="material-symbols text-2xl" :class="iconClass">more_vert</span>
</button>
<div v-else class="h-full w-full flex items-center justify-center">
<widgets-loading-spinner />
Expand Down Expand Up @@ -116,4 +116,4 @@ export default {
},
mounted() {}
}
</script>
</script>

0 comments on commit b1bc472

Please sign in to comment.