Agregado boton login para ollas
This commit is contained in:
parent
91afeddc3d
commit
2c24c1f815
3 changed files with 29 additions and 11 deletions
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="buttons is-right">
|
<!-- <div class="buttons is-right">-->
|
||||||
<a class="button is-danger is-light is-small" :href="href">
|
<a class="button is-danger is-light is-small fixed-width" :href="href">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="fa fa-solid fa-user-check"></i>
|
<i class="fa fa-solid fa-user-check"></i>
|
||||||
</span>
|
</span>
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
{{ nombre }}
|
{{ nombre }}
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -26,3 +26,9 @@ export default {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.fixed-width {
|
||||||
|
min-width: 6rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -10,10 +10,16 @@
|
||||||
<body>
|
<body>
|
||||||
<section class="section">
|
<section class="section">
|
||||||
<div id="root" class="container">
|
<div id="root" class="container">
|
||||||
<comunes-boton-login
|
<div class="buttons is-right">
|
||||||
href="/"
|
<comunes-boton-login
|
||||||
nombre="Pedidos"
|
href="/"
|
||||||
></comunes-boton-login>
|
nombre="Pedidos"
|
||||||
|
></comunes-boton-login>
|
||||||
|
<comunes-boton-login
|
||||||
|
href="/ollas"
|
||||||
|
nombre="Ollas"
|
||||||
|
></comunes-boton-login>
|
||||||
|
</div>
|
||||||
<h1 class="title has-text-white">
|
<h1 class="title has-text-white">
|
||||||
Administración de Pedidos MPS
|
Administración de Pedidos MPS
|
||||||
</h1>
|
</h1>
|
||||||
|
|
|
@ -11,10 +11,16 @@
|
||||||
<body>
|
<body>
|
||||||
<section class="section">
|
<section class="section">
|
||||||
<div id="root" class="container">
|
<div id="root" class="container">
|
||||||
<comunes-boton-login
|
<div class="buttons is-right">
|
||||||
href="/admin"
|
<comunes-boton-login
|
||||||
nombre="Admin"
|
href="/admin"
|
||||||
></comunes-boton-login>
|
nombre="Admin"
|
||||||
|
></comunes-boton-login>
|
||||||
|
<comunes-boton-login
|
||||||
|
href="/ollas"
|
||||||
|
nombre="Ollas"
|
||||||
|
></comunes-boton-login>
|
||||||
|
</div>
|
||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
Pedidos MPS
|
Pedidos MPS
|
||||||
</h1>
|
</h1>
|
||||||
|
|
Loading…
Add table
Reference in a new issue