diff --git a/src/HorizontalStepper.scss b/src/HorizontalStepper.scss
index faedcc9..9612e3a 100644
--- a/src/HorizontalStepper.scss
+++ b/src/HorizontalStepper.scss
@@ -43,8 +43,7 @@
}
.stepper-box {
- background-color: white;
- @include shadow(1);
+ background-color: transparent;
min-height: 200px;
.top {
.stepper-button-top {
@@ -57,8 +56,8 @@
align-items: center;
justify-content: space-between;
&.next {
- border: 2px solid #3383c8;
- color: #3383c8;
+ border: 2px solid #000;
+ color: #000;
right: 1%;
&.deactivated {
border: 2px solid #cccccc !important;
@@ -67,6 +66,7 @@
}
}
&.previous {
+ border: 2px solid #333333;
color: #333333;
left: 1%;
}
@@ -120,9 +120,9 @@
.circle {
margin-bottom: 1rem;
padding: 0 1rem;
- background-color: white;
+ background-color: transparent;
i {
- background-color: #3383c8;
+ background-color: #000;
color: #fff;
border-radius: 100rem;
padding: 1rem;
@@ -166,22 +166,24 @@
}
.stepper-button {
padding: .5rem 1rem;
+ border-radius: 30px;
+ box-shadow: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
+ border-radius: 30px!important;
&.next {
- background-color: #3383c8;
+ background-color: #d80000;
color: white;
- @include shadow(1);
&.deactivated {
background-color: #cccccc !important;
cursor: not-allowed !important;
}
}
&.previous {
- color: #333333;
+ color: #d80000;
}
}
}
-}
\ No newline at end of file
+}
diff --git a/src/HorizontalStepper.vue b/src/HorizontalStepper.vue
index d3beaad..c1e2af6 100644
--- a/src/HorizontalStepper.vue
+++ b/src/HorizontalStepper.vue
@@ -30,10 +30,10 @@