menu update

This commit is contained in:
ed barz 2022-06-02 09:42:36 +02:00
parent 6a98b26adf
commit 09c06a63ef
5 changed files with 28 additions and 3 deletions

View File

@ -3,6 +3,7 @@
--b9h-color-bg-alpha: rgba(28,39,41,0.8);
--b9h-color-fg: #b3bfb6;
--b9h-color-accent: #ff5821;
--b9h-color-green: #1cd95f;
}
html {

View File

@ -413,4 +413,14 @@ section.prixindicatif p {
padding-bottom: 20px;
}
h3 span.byl-icon-leaf {
color: var(--b9h-color-green);
font-size: 1rem;
margin-left: 5px;
}
section.menuindicatif p {
margin-top: 30px;
text-align: center;
font-style: italic;
}

View File

@ -16,6 +16,7 @@ let Dishes = {
},
d10s : {
name : "Pizza D10S",
vege : true,
ing : [
ingredients.tomate,
ingredients.mozzarella,

View File

@ -204,7 +204,10 @@ Vue.component('Menu',{
<h2 class="b9h-lang-it"> {{ s.nameIT }}</h2>
<div class="dish" v-for="d in s.list">
<h3 v-if="d.name !== 'blank'">{{ d.name }}</h3>
<h3 v-if="d.name !== 'blank'">
{{ d.name }}
<span v-if="d.hasOwnProperty('vege')" class="byl-icon-leaf vege"></span>
</h3>
<ul v-if="d.name !== 'blank'">
<p class="b9h-lang-fr"> {{ l2s(ings2ls(d.ing,"fr"), "fr") }}</p>
<p class="b9h-lang-en"> {{ l2s(ings2ls(d.ing,"en"), "en") }}</p>
@ -217,6 +220,15 @@ Vue.component('Menu',{
</ul>
</div>
</section>
<section class="menuindicatif">
<p class="b9h-lang-fr"> {{ indicatif.fr }}</p>
<p class="b9h-lang-en"> {{ indicatif.en }}</p>
<p class="b9h-lang-it"> {{ indicatif.it }}</p>
</section>
</br>
</br>
</br>
</section>
`,
props : {
@ -231,9 +243,9 @@ Vue.component('Menu',{
it : " e ",
},
fourchette : {
fr : "Fourchette de prix par personne:",
fr : "Fourchette de prix par personne :",
en : "Price range per person:",
it : "Fascia di prezzo per persona:",
it : "Fascia di prezzo per persona :",
},
horsboissons : {
fr : "(hors boissons)",

View File

@ -51,6 +51,7 @@ let SanTelmo = {
nameIT : "Pizza",
list : [
Dishes.santelmo.diavolo,
Dishes.santelmo.d10s,
],
},
pates : {