diff --git a/src/Funnel1.vue b/src/Funnel1.vue
index 2c9ca1cae..0998aa9d8 100644
--- a/src/Funnel1.vue
+++ b/src/Funnel1.vue
@@ -40,29 +40,24 @@
-
@@ -75,8 +70,6 @@
import imageButton from './components/imageButton';
import confetti from './components/confetti';
import buttonPrimary from './components/buttons/buttonPrimary';
- import buttonPrimaryFocus from './components/buttons/buttonPrimaryFocus';
- import buttonDisabled from './components/buttons/buttonDisabled';
export default {
@@ -86,9 +79,7 @@
vehicleImage,
imageButton,
confetti,
- buttonPrimary,
- buttonPrimaryFocus,
- buttonDisabled
+ buttonPrimary
}
}
diff --git a/src/assets/scss/components/_buttons.scss b/src/assets/scss/components/_buttons.scss
index efbb34ded..0d0608dd7 100644
--- a/src/assets/scss/components/_buttons.scss
+++ b/src/assets/scss/components/_buttons.scss
@@ -30,11 +30,11 @@
}
}
}
- &:disabled {
- background: $gray-100;
- background: linear-gradient(270deg, $gray-100 0%, $gray-100 100%);
- color: $gray-400;
- }
+ }
+ &.disabled {
+ background: $gray-100;
+ background: linear-gradient(270deg, $gray-100 0%, $gray-100 100%);
+ color: $gray-400;
}
&.btn-primary-focus {
position: relative;//Required for :after pseduo to position correctly
diff --git a/src/components/buttons/buttonPrimary.vue b/src/components/buttons/buttonPrimary.vue
index 50cd6daa7..abc24e291 100644
--- a/src/components/buttons/buttonPrimary.vue
+++ b/src/components/buttons/buttonPrimary.vue
@@ -1,10 +1,30 @@
-
+