Compare commits
No commits in common. "2d8d218d1f75dc7836b886c9d4f96ac076412c5b" and "dce06203654cacc175a205955df04ca3a591eb03" have entirely different histories.
2d8d218d1f
...
dce0620365
3 changed files with 9 additions and 33 deletions
14
public/css/app.css
vendored
14
public/css/app.css
vendored
|
@ -19,7 +19,7 @@ nav.breadcrumb.is-fixed-top {
|
|||
left: 0;
|
||||
position: fixed;
|
||||
right: 0;
|
||||
z-index: 0;
|
||||
z-index: 30;
|
||||
top: 3.25rem;
|
||||
height: 3.25rem;
|
||||
}
|
||||
|
@ -51,15 +51,3 @@ main.has-top-padding {
|
|||
main.chisma-abierta {
|
||||
padding-top: 25.5rem !important;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1024px) {
|
||||
.hide-when-widescreen {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1023px) {
|
||||
.hide-when-narrowscreen {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
20
public/js/app.js
vendored
20
public/js/app.js
vendored
|
@ -7,10 +7,8 @@ Vue.component('nav-bar', {
|
|||
<a class="navbar-item" href="https://mps.org.uy">
|
||||
<img src="/assets/logoMPS.png" height="28">
|
||||
</a>
|
||||
<p style="margin:0 auto" class="navbar-item hide-when-widescreen">
|
||||
<slot name="subpedido"></slot>
|
||||
</p>
|
||||
<a class="navbar-item hide-when-widescreen" href="#chismosa" @click.capture="toggleChismosa">
|
||||
<p style="margin:0 auto" class="navbar-item"><slot name="subpedido"></slot></p>
|
||||
<a class="navbar-item" href="#chismosa" @click.capture="toggleChismosa">
|
||||
<img style="padding:0 0.3em;" src="/assets/chismosa.png" height="28">
|
||||
<p style="margin:0 auto; color:white">$ <span v-text="subpedido == null ? 0 : subpedido.total"></span></p>
|
||||
</a>
|
||||
|
@ -22,19 +20,9 @@ Vue.component('nav-bar', {
|
|||
</div>
|
||||
|
||||
<div id="navbarBasicExample" class="navbar-menu" :class="{'is-active':isActive}">
|
||||
<div class="navbar-start"></div>
|
||||
<div class="navbar-end has-text-right-mobile">
|
||||
<p style="margin:0 auto" class="navbar-item hide-when-narrowscreen">
|
||||
<slot name="subpedido"></slot>
|
||||
</p>
|
||||
<a class="navbar-item hide-when-narrowscreen" href="#chismosa" @click.capture="toggleChismosa">
|
||||
<img style="padding:0 0.3em;" src="/assets/chismosa.png" height="28">
|
||||
<p style="margin:0 auto; color:white">$ <span v-text="subpedido == null ? 0 : subpedido.total"></span></p>
|
||||
</a>
|
||||
<div class="navbar-start has-text-right-mobile">
|
||||
<!-- Styles nombre del barrio-->
|
||||
<p class="navbar-item">
|
||||
<slot name="gdc"></slot>
|
||||
</p>
|
||||
<p class="navbar-item"><slot name="gdc"></slot></p>
|
||||
<a class="navbar-item"
|
||||
onclick="event.preventDefault();
|
||||
document.getElementById('logout-form').submit();">
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<nav-migas inline-template>
|
||||
<nav class="breadcrumb is-centered has-background-danger-light is-fixed-top" aria-label="breadcrumbs" v-show="visible">
|
||||
<ul>
|
||||
<li v-for="(miga, i) in migas" v-bind:class="i===migas.length-1 ? 'is-active' : ''"><a :href="miga.href" v-text="miga.nombre"></a></li>
|
||||
<li v-for="(miga, i) in migas" v-bind:class="i==migas.length-1 ? 'is-active' : ''"><a :href="miga.href" v-text="miga.nombre"></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</nav-migas>
|
||||
|
|
Loading…
Add table
Reference in a new issue