Skip to content

Commit

Permalink
feat: ⏪ remove slogan meme
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnikenYT committed Nov 6, 2023
1 parent 2cf4f6e commit 4068f51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
Binary file added bun.lockb
Binary file not shown.
15 changes: 3 additions & 12 deletions src/stories/atoms/Logo.vue
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
<template>
<span class="font-bold text-white relative" @click="$emit('click')">
{{ long ? 'Bergflix' : 'Bf'
}}<span class="text-primary-500">. <slot /></span>
<a href="https://cdn.upload.systems/uploads/f9kaTj1Q.png"
><span
v-if="canHaveSlogan"
class="absolute -right-4 -bottom-4 font-inception text-base text-indigo-500 p-1"
><img
src="https://cdn.discordapp.com/emojis/1102957082019364936.webp?size=96&quality=lossless"
class="Jawohl"
style="width:30px; height:30px"/></span
></a
>
}}<span class="text-primary-500">.
<slot />
</span>
</span>
</template>
<script setup lang="ts">
// eslint-disable-next-line no-undef
defineProps<{
long?: boolean;
canHaveSlogan?: boolean;
}>();
// eslint-disable-next-line no-undef
defineEmits(['click']);
Expand Down
2 changes: 1 addition & 1 deletion src/stories/organisms/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<nav
class="w-full h-20 fixed bg-gradient-to-t md:bg-gradient-to-b via-black/50 from-black to-transparent z-50 md:top-0 md:bottom-0-auto bottom-0 top-auto flex flex-row items-center md:justify-start justify-around md:space-x-2 p-2"
>
<Logo long can-have-slogan class="hidden md:block text-3xl" />
<Logo long class="hidden md:block text-3xl" />
<NavLink v-for="item in navItems" :key="item.name" :name="item.name">
<component
:is="item.icon"
Expand Down

0 comments on commit 4068f51

Please sign in to comment.