Compare commits

..

No commits in common. "381909fb7e2e20529d7e125ae59a0ee57e3675ad" and "9991337b8716718d2766c38c91a2e41943706a6a" have entirely different histories.

3 changed files with 1 additions and 12 deletions

View file

@ -1,11 +0,0 @@
<template>
<div v-show="this.$root.pedido.aprobado" class="notification is-warning has-text-centered">
Tu pedido fue <strong>aprobado</strong>, por lo que no puede ser modificado
</div>
</template>
<script>
</script>
<style>
</style>

View file

@ -1,5 +1,6 @@
<template>
<div v-show="visible" class="container">
<div v-show="this.$root.pedido.aprobado" class="notification is-warning has-text-centered">Tu pedido fue <strong>aprobado</strong>, por lo que no puede ser modificado</div>
<div class="columns is-multiline is-mobile">
<div v-for="(categoria,i) in categorias" :key="i" class="block column is-one-quarter-desktop is-one-third-tablet is-half-mobile">
<div @click.capture="seleccionarCategoria(categoria)" class="card" style="height:100%" >

View file

@ -31,7 +31,6 @@
<nav-migas></nav-migas>
<main id="main" class="py-4 has-top-padding">
<cartel-pedido-aprobado></cartel-pedido-aprobado>
@yield('content')
</main>
</div>