wip editar/coopertiva

This commit is contained in:
María
2025-09-10 15:09:56 +02:00
parent 07251e1b83
commit 365fcf7303
8 changed files with 50 additions and 29 deletions

View File

@@ -1,6 +1,6 @@
<template>
<BContainer class="container">
<BRow align-h="center">
<BContainer class="container-fluid">
<BRow align-h="center" class="change-password">
<BCol class="change-password">
<form class="form" autocomplete="off" @submit.prevent="submitUser">
<h1 class="title">Cambiar contraseña</h1>
@@ -92,29 +92,42 @@ export default {
</script>
<style lang="scss" scoped>
.container {
margin-top: 40px;
margin-bottom: 40px;
.container-fluid {
margin: 5rem 0 5rem 0;
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 {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
.title {
color: $color-navy;
font-size: $xxl;
color: $color-primary;
font-size: $h2;
margin-bottom: 40px;
text-align: left;
width: 45%;
text-align: center;
width: 100%;
@include mobile {
width: 80%;
margin-top: 70px;
}
@include desktop {
width: 25%;
width: 40%;
}
}
.form {
@@ -125,7 +138,7 @@ export default {
margin-bottom: 40px;
label {
text-align: left;
color: $color-navy;
color: $color-primary;
font-weight: $bold;
font-size: $xs;
}