From ad72dfb07947bb8d290a322ce663ce233c935452 Mon Sep 17 00:00:00 2001 From: Robert Romero Medina Date: Sun, 4 Oct 2020 13:26:58 -0400 Subject: [PATCH] Nominate button does not work #101 --- src/assets/style/custom.scss | 24 ++++++ src/components/FormNominate.vue | 110 +++++++++++++++++++++++++ src/views/Nominate.vue | 138 +++++++++++++++++++------------- 3 files changed, 218 insertions(+), 54 deletions(-) create mode 100644 src/components/FormNominate.vue diff --git a/src/assets/style/custom.scss b/src/assets/style/custom.scss index 4d8b214..13f172a 100644 --- a/src/assets/style/custom.scss +++ b/src/assets/style/custom.scss @@ -30,3 +30,27 @@ body { background: #23272b; } } + +.btn { + &.secundary { + width: 200px; + height: 50px; + display: flex; + justify-content: center; + flex-direction: column; + color: #fff; + background: #1ac790; + border-radius: 6px; + font-family: "Poppins"; + font-size: 1.3rem; + } + + &.secundary:hover { + background: #23272b; + } + + &.block { + width: 100%; + height: 50px; + } +} \ No newline at end of file diff --git a/src/components/FormNominate.vue b/src/components/FormNominate.vue new file mode 100644 index 0000000..137b35c --- /dev/null +++ b/src/components/FormNominate.vue @@ -0,0 +1,110 @@ + + +> \ No newline at end of file diff --git a/src/views/Nominate.vue b/src/views/Nominate.vue index 56024d0..0ac32cb 100644 --- a/src/views/Nominate.vue +++ b/src/views/Nominate.vue @@ -1,59 +1,89 @@ +> + \ No newline at end of file