wip editar/coopertiva
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="navsearch_container container-fluid">
|
<div class="navsearch_container container-fluid">
|
||||||
<NuxtLink to="/editar/perfil">Mi perfil</NuxtLink>
|
<NuxtLink to="/editar/perfil">Mi perfil</NuxtLink>
|
||||||
<NuxtLink :class="{ disabled: !coopIsValidated }" to="/editar/productora"
|
<NuxtLink :class="{ disabled: !coopIsValidated }" to="/editar/cooperativa"
|
||||||
>productora</NuxtLink
|
>Productora</NuxtLink
|
||||||
>
|
>
|
||||||
<!-- <NuxtLink to="/editar/productora/crear">Crear productora</NuxtLink> -->
|
<!-- <NuxtLink to="/editar/productora/crear">Crear productora</NuxtLink> -->
|
||||||
<NuxtLink :class="{ disabled: !coopIsValidated }" to="/editar/productos"
|
<NuxtLink :class="{ disabled: !coopIsValidated }" to="/editar/productos"
|
||||||
|
|||||||
@@ -25,4 +25,3 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style></style>
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<BContainer class="container">
|
<BContainer class="container-fluid">
|
||||||
<BRow align-h="center">
|
<BRow align-h="center" class="change-password">
|
||||||
<BCol class="change-password">
|
<BCol class="change-password">
|
||||||
<form class="form" autocomplete="off" @submit.prevent="submitUser">
|
<form class="form" autocomplete="off" @submit.prevent="submitUser">
|
||||||
<h1 class="title">Cambiar contraseña</h1>
|
<h1 class="title">Cambiar contraseña</h1>
|
||||||
@@ -92,29 +92,42 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.container {
|
.container-fluid {
|
||||||
margin-top: 40px;
|
margin: 5rem 0 5rem 0;
|
||||||
margin-bottom: 40px;
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
background: linear-gradient($color-consumo-base-light, $color-bg-light);
|
||||||
|
border-radius: 1rem;
|
||||||
|
padding: 2rem;
|
||||||
|
gap: 3rem;
|
||||||
|
color: $color-primary;
|
||||||
|
|
||||||
|
@include mobile {
|
||||||
|
margin-top: 7rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.change-password {
|
.change-password {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
color: $color-navy;
|
color: $color-primary;
|
||||||
font-size: $xxl;
|
font-size: $h2;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
text-align: left;
|
text-align: center;
|
||||||
width: 45%;
|
width: 100%;
|
||||||
@include mobile {
|
@include mobile {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
margin-top: 70px;
|
margin-top: 70px;
|
||||||
}
|
}
|
||||||
@include desktop {
|
@include desktop {
|
||||||
width: 25%;
|
width: 40%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.form {
|
.form {
|
||||||
@@ -125,7 +138,7 @@ export default {
|
|||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
label {
|
label {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: $color-navy;
|
color: $color-primary;
|
||||||
font-weight: $bold;
|
font-weight: $bold;
|
||||||
font-size: $xs;
|
font-size: $xs;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<BContainer class="container">
|
<BContainer class="container-fluid">
|
||||||
<BRow align-h="start">
|
<BRow align-h="start" class="edit-profile">
|
||||||
<BCol class="edit-profile">
|
<BCol class="edit-profile">
|
||||||
<form class="form" @submit.prevent="submitUser">
|
<form class="form" @submit.prevent="submitUser">
|
||||||
<h1 class="title">Editar perfil</h1>
|
<h1 class="title">Editar perfil</h1>
|
||||||
@@ -108,22 +108,35 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.container {
|
.container-fluid {
|
||||||
margin-top: 40px;
|
margin: 5rem 0 5rem 0;
|
||||||
margin-bottom: 40px;
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
background: linear-gradient($color-consumo-base-light, $color-bg-light);
|
||||||
|
border-radius: 1rem;
|
||||||
|
padding: 2rem;
|
||||||
|
gap: 3rem;
|
||||||
|
color: $color-primary;
|
||||||
|
|
||||||
|
@include mobile {
|
||||||
|
margin-top: 7rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-profile {
|
.edit-profile {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
color: $color-navy;
|
color: $color-primary;
|
||||||
font-size: $xxl;
|
font-size: $h2;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
text-align: left;
|
text-align: center;
|
||||||
width: 45%;
|
width: 45%;
|
||||||
|
|
||||||
@include mobile {
|
@include mobile {
|
||||||
@@ -136,14 +149,14 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.form {
|
.form {
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
|
width: 100%;
|
||||||
label {
|
label {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
color: $color-navy;
|
color: $color-primary;
|
||||||
font-weight: $bold;
|
font-weight: $bold;
|
||||||
font-size: $xs;
|
font-size: $xs;
|
||||||
}
|
}
|
||||||
@@ -159,7 +172,7 @@ export default {
|
|||||||
.checkbox-group {
|
.checkbox-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: 1px solid $color-navy;
|
border: 1px solid $color-primary;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -101,7 +101,6 @@ export default {
|
|||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
gap: 3rem;
|
gap: 3rem;
|
||||||
margin: 2rem 0 4rem;
|
|
||||||
color: $color-primary;
|
color: $color-primary;
|
||||||
|
|
||||||
@include mobile {
|
@include mobile {
|
||||||
|
|||||||
@@ -82,7 +82,6 @@ export default {
|
|||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
gap: 3rem;
|
gap: 3rem;
|
||||||
margin: 2rem 0 4rem;
|
|
||||||
color: $color-primary;
|
color: $color-primary;
|
||||||
|
|
||||||
@include mobile {
|
@include mobile {
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ export default {}
|
|||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
gap: 3rem;
|
gap: 3rem;
|
||||||
margin: 2rem 0 4rem;
|
|
||||||
color: $color-primary;
|
color: $color-primary;
|
||||||
|
|
||||||
@include mobile {
|
@include mobile {
|
||||||
|
|||||||
@@ -165,7 +165,6 @@ export default {
|
|||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
gap: 3rem;
|
gap: 3rem;
|
||||||
margin: 2rem 0 4rem;
|
|
||||||
color: $color-primary;
|
color: $color-primary;
|
||||||
|
|
||||||
@include mobile {
|
@include mobile {
|
||||||
|
|||||||
Reference in New Issue
Block a user