|
@@ -8,7 +8,10 @@
|
|
|
/>
|
|
/>
|
|
|
|
|
|
|
|
<nuxt-link to="/">
|
|
<nuxt-link to="/">
|
|
|
- <v-img class="logo-md" src="/images/logo/navigation-logo.png" />
|
|
|
|
|
|
|
+ <v-img
|
|
|
|
|
+ class="logo-md"
|
|
|
|
|
+ :src="smAndUp ? '/images/logo/navigation-logo.png' : '/images/Opentalent_Griffe.png'"
|
|
|
|
|
+ />
|
|
|
</nuxt-link>
|
|
</nuxt-link>
|
|
|
|
|
|
|
|
<v-spacer />
|
|
<v-spacer />
|
|
@@ -78,6 +81,9 @@
|
|
|
import AgendaLink from "~/components/Common/AgendaLink.vue";
|
|
import AgendaLink from "~/components/Common/AgendaLink.vue";
|
|
|
import type { PropType } from "@vue/runtime-core";
|
|
import type { PropType } from "@vue/runtime-core";
|
|
|
import type { MainMenuItem } from "~/types/interface";
|
|
import type { MainMenuItem } from "~/types/interface";
|
|
|
|
|
+import { useDisplay } from "vuetify";
|
|
|
|
|
+
|
|
|
|
|
+const { smAndUp } = useDisplay()
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
|
menu: {
|
|
menu: {
|
|
@@ -150,7 +156,11 @@ const withAnimation = (callback: () => void) => {
|
|
|
|
|
|
|
|
.logo-md {
|
|
.logo-md {
|
|
|
width: 150px;
|
|
width: 150px;
|
|
|
- height: 300px;
|
|
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+
|
|
|
|
|
+ @media (max-width: 600px) {
|
|
|
|
|
+ width: 50px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.back-item {
|
|
.back-item {
|