diff --git a/src/common-components/funnel-footer/funnel-footer.spec.js b/src/common-components/funnel-footer/funnel-footer.spec.js
new file mode 100644
index 000000000..3d0843e10
--- /dev/null
+++ b/src/common-components/funnel-footer/funnel-footer.spec.js
@@ -0,0 +1 @@
+test.todo("some test to be written in the future");
diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue
new file mode 100644
index 000000000..acd362709
--- /dev/null
+++ b/src/common-components/funnel-footer/funnel-footer.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
this should scroll
+
+
+
+
+
+
+
diff --git a/src/layouts/component-test/component-test.vue b/src/layouts/component-test/component-test.vue
index 7363ec3d4..a122485e9 100644
--- a/src/layouts/component-test/component-test.vue
+++ b/src/layouts/component-test/component-test.vue
@@ -46,6 +46,31 @@
/>
+
+
List Card
@@ -626,31 +651,6 @@
/>
-
-
Typography
@@ -796,95 +796,109 @@
Button Question
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -900,6 +914,7 @@ import listButtonHorizontal from "@/ux-components/list-button-horizontal/list-bu
import checkbox from "@/ux-components/checkbox/checkbox";
import buttonQuestion from "@/common-components/button-question/button-question";
import textLink from "@/ux-components/text-link/text-link";
+import funnelFooter from "@/common-components/funnel-footer/funnel-footer";
export default {
name: "App",
components: {
@@ -913,7 +928,8 @@ export default {
checkbox,
funnelHeader,
buttonQuestion,
- textLink
+ textLink,
+ funnelFooter
},
data() {
return {
diff --git a/src/ux-components/button-main/button-main.vue b/src/ux-components/button-main/button-main.vue
index 5d89e9afa..2f99ac33a 100644
--- a/src/ux-components/button-main/button-main.vue
+++ b/src/ux-components/button-main/button-main.vue
@@ -1,5 +1,5 @@
-
+
{{ this.buttonText }}
@@ -16,6 +16,7 @@ export default {
loaderColor: String,
loaderPosition: String,
sizeInRem: [Number, String],
+ isFloat: Boolean
},
data() {
return {
@@ -44,6 +45,7 @@ export default {
border-radius: $border-radius-lg;
color: $white;
transition: all 150ms linear;
+ white-space: nowrap;
&:hover {
background: linear-gradient(270deg, rgba(6,87,124,1) 0%, rgba(6,87,124,1) 100%);
}
diff --git a/src/ux-components/list-button-horizontal/list-button-horizontal.vue b/src/ux-components/list-button-horizontal/list-button-horizontal.vue
index d03a042d7..b4f642451 100644
--- a/src/ux-components/list-button-horizontal/list-button-horizontal.vue
+++ b/src/ux-components/list-button-horizontal/list-button-horizontal.vue
@@ -97,6 +97,7 @@ export default {
background: $white;
transition: all 150ms linear;
border: 1px solid $gray-500;
+ border-radius: 0;
width: 100%;
&:hover {
box-shadow: 0 0 0 4px $blue-100;
diff --git a/src/ux-components/text-link/text-link.vue b/src/ux-components/text-link/text-link.vue
index 15d677c9f..3021dfd91 100644
--- a/src/ux-components/text-link/text-link.vue
+++ b/src/ux-components/text-link/text-link.vue
@@ -51,6 +51,12 @@ a {
color: $black;
border-bottom: 1px solid $black;
line-height: 26px;
+ display: inline-flex;
+ text-transform: capitalize;
+ white-space: nowrap;
+ position: relative;
+ top: 50%;
+ transform: translateY(-50%);
}
&.footer-link {
color: $gray-500;