Fix ThemeToggle button size

This commit is contained in:
Lucas Schumacher 2023-11-07 12:11:21 -05:00
parent 6d8ba5cc77
commit 9244e94dd7

View File

@ -35,7 +35,7 @@ const currentIcon = computed(() => theme_icons[currentTheme.value])
</script> </script>
<template> <template>
<button type="button" @click="click" class="btn btn-primary align-items-center w-100 py-2"> <button type="button" @click="click" class="btn btn-primary align-items-center py-2">
<component :is="currentIcon" /> <component :is="currentIcon" />
</button> </button>
</template> </template>