info size down for small screen
This commit is contained in:
parent
09c06a63ef
commit
272e26bfc9
|
@ -352,7 +352,7 @@ nav.restotagcloud {
|
|||
div.tabinfocontent {
|
||||
padding: 10px;
|
||||
margin-top: 20px;
|
||||
font-size: 1.2rem;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
div.tabinfocontent span.infotags {
|
||||
|
|
|
@ -206,7 +206,10 @@ Vue.component('Menu',{
|
|||
<div class="dish" v-for="d in s.list">
|
||||
<h3 v-if="d.name !== 'blank'">
|
||||
{{ d.name }}
|
||||
<span v-if="d.hasOwnProperty('vege')" class="byl-icon-leaf vege"></span>
|
||||
<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>
|
||||
|
@ -214,9 +217,27 @@ Vue.component('Menu',{
|
|||
<p class="b9h-lang-it"> {{ l2s(ings2ls(d.ing,"it"), "it") }}</p>
|
||||
</ul>
|
||||
<ul v-else>
|
||||
<h3 class="b9h-lang-fr"> {{ l2s(ings2ls(d.ing,"fr"), "fr") }}</h3>
|
||||
<h3 class="b9h-lang-en"> {{ l2s(ings2ls(d.ing,"en"), "en") }}</h3>
|
||||
<h3 class="b9h-lang-it"> {{ l2s(ings2ls(d.ing,"it"), "it") }}</h3>
|
||||
<h3 class="b9h-lang-fr">
|
||||
{{ l2s(ings2ls(d.ing,"fr"), "fr") }}
|
||||
<span
|
||||
v-if="d.hasOwnProperty('vege')"
|
||||
class="byl-icon-leaf vege">
|
||||
</span>
|
||||
</h3>
|
||||
<h3 class="b9h-lang-en">
|
||||
{{ l2s(ings2ls(d.ing,"en"), "en") }}
|
||||
<span
|
||||
v-if="d.hasOwnProperty('vege')"
|
||||
class="byl-icon-leaf vege">
|
||||
</span>
|
||||
</h3>
|
||||
<h3 class="b9h-lang-it">
|
||||
{{ l2s(ings2ls(d.ing,"it"), "it") }}
|
||||
<span
|
||||
v-if="d.hasOwnProperty('vege')"
|
||||
class="byl-icon-leaf vege">
|
||||
</span>
|
||||
</h3>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -31,12 +31,12 @@ let ParkingLamy = {
|
|||
it: "Per i pacchetti, chiedere alla reception del parcheggio all'arrivo. Se necessario, suonare il citofono.",
|
||||
},
|
||||
list : {
|
||||
h1 : {
|
||||
/* h1 : {
|
||||
nameFR: "1h",
|
||||
nameEN: "1h",
|
||||
nameIT: "1h",
|
||||
price: "",
|
||||
},
|
||||
},*/
|
||||
h24 : {
|
||||
nameFR: "24h",
|
||||
nameEN: "24h",
|
||||
|
|
Loading…
Reference in New Issue