diff --git a/components/BannerCoop.vue b/components/BannerCoop.vue index 8bed437..68150aa 100644 --- a/components/BannerCoop.vue +++ b/components/BannerCoop.vue @@ -23,7 +23,7 @@ /> Saber más - +
-

{{ title }}

- +

{{ title }}

+

+
@@ -9,6 +10,7 @@ export default { props: { title: { type: String, default: '' }, + subtitle: { type: String, default: '' }, }, } @@ -18,16 +20,27 @@ export default { display: flex; flex-direction: column; align-items: center; - margin-bottom: 40px; + gap: 1rem; + color: $color-primary; .title { - font-size: $xl; - color: $color-navy; + font-size: $h2; + color: $color-primary; margin-bottom: 10px; } - img { - width: 40px; + .subtitle { + font-size: $l; + color: $color-primary; + margin-bottom: 10px; + text-align: center; + } + + .title-lines { + width: 34px; + height: 2px; + background: $color-consumo-base; + margin: 0 8px; } } diff --git a/components/FormInput.vue b/components/FormInput.vue index caa6a42..8789d30 100644 --- a/components/FormInput.vue +++ b/components/FormInput.vue @@ -82,7 +82,7 @@ input { label { text-align: left; - color: $color-navy; + color: $color-primary; font-weight: $bold; font-size: $xs; display: block; diff --git a/components/NavBar.vue b/components/NavBar.vue index 974a79b..73f5fa4 100644 --- a/components/NavBar.vue +++ b/components/NavBar.vue @@ -63,6 +63,7 @@ src="@/assets/img/circle-user-round.svg" alt="latienda.coop" /> +
@@ -221,4 +222,19 @@ nav { display: none; } } + +.nav-access { + font-size: $s; + margin: 0 0.1rem; + font-weight: $medium; + text-decoration: none; + color: $color-primary; + cursor: pointer; + :hover { + color: $color-consumo-base; + } + @include mobile { + display: none; + } +} diff --git a/components/NavBarEditar.vue b/components/NavBarEditar.vue index e03e48f..6d47e4e 100644 --- a/components/NavBarEditar.vue +++ b/components/NavBarEditar.vue @@ -1,10 +1,10 @@