generated from gitea_admin/default
finalisation home page
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
<script setup>
|
||||
import logoDefault from '/img/logos/logo_orchestre_red.svg'
|
||||
import agendaRouge from '@/assets/img/icones/agenda_rouge.svg'
|
||||
import ticket from '@/assets/img/icones/ticket_black.svg'
|
||||
import mobile_agenda_icon from '@/assets/img/icones/agenda_rouge_fonce_blanc.svg'
|
||||
import mobile_ticket from '@/assets/img/icones/ticket_white.svg'
|
||||
import ticket from '@/assets/img/icones/ticket_noir.svg'
|
||||
import mobile_agenda_icon from '@/assets/img/icones/agenda_blanc_non_opaque.svg'
|
||||
import mobile_ticket from '@/assets/img/icones/ticket_blanc.svg'
|
||||
const { brand } = useAppConfig()
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -18,17 +17,31 @@
|
||||
<img :src="agendaRouge" alt="icone agenda" />
|
||||
</template>
|
||||
<template #ticket>
|
||||
<img class="img_ticket" :src="ticket" alt="icone ticket" />
|
||||
<img class="img_ticket_desktop" :src="ticket" alt="icone ticket" />
|
||||
</template>
|
||||
<template #mobile_agenda_icon>
|
||||
<img :src="mobile_agenda_icon" alt="icone ticket" />
|
||||
</template>
|
||||
|
||||
<template #mobile_ticket>
|
||||
<img :src="mobile_ticket" alt="icone ticket" />
|
||||
<img class="img_ticket_mob" :src="mobile_ticket" alt="icone ticket" />
|
||||
</template>
|
||||
|
||||
</HeaderNav>
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
.img_ticket_desktop {
|
||||
max-height: 26px;
|
||||
margin-top: 4px;
|
||||
margin-left: -11px;
|
||||
}
|
||||
.img_ticket_mob {
|
||||
max-height: 37px;
|
||||
margin-top: 9px;
|
||||
margin-left: -11px;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user