Update CreatePlaylistButton.svelte

This commit is contained in:
freearhey 2023-10-10 06:14:38 +03:00
parent 8cce03ffe5
commit 0b302db5fa

View file

@ -7,7 +7,6 @@
const dispatch = createEventDispatcher() const dispatch = createEventDispatcher()
</script> </script>
<div class="w-14 sm:w-36">
<ActionButton <ActionButton
disabled={$downloadMode} disabled={$downloadMode}
on:click={() => { on:click={() => {
@ -16,7 +15,7 @@
}} }}
area-label="Create Playlist" area-label="Create Playlist"
> >
<span class="sm:hidden inline"> <span class="inline">
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
class="w-5 h-5" class="w-5 h-5"
@ -60,4 +59,3 @@
> >
</span><span class="hidden sm:inline">Create Playlist</span> </span><span class="hidden sm:inline">Create Playlist</span>
</ActionButton> </ActionButton>
</div>