Skip to content

Commit

Permalink
removes underline on cta
Browse files Browse the repository at this point in the history
  • Loading branch information
vincelee888 committed Oct 14, 2019
1 parent 6f12ea7 commit 9d1d57a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/data/cachebusting.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"date": "1571048897734"}
{"date": "1571049418568"}
18 changes: 9 additions & 9 deletions src/scss/partials/_btn.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
appearance: none;
display: inline-block;
margin-bottom: 20px;
text-decoration: none;
text-decoration: none !important;
text-align: center;
outline: none;
font-size: 16px;
Expand All @@ -22,7 +22,7 @@
&__icon {
width: 100%;
display: block;
background: linear-gradient(#ADE1F9, #FFFFFF);
background: linear-gradient(#ade1f9, #ffffff);
border-radius: 10px 10px 0 0;
position: relative;

Expand Down Expand Up @@ -57,7 +57,7 @@
left: 0;
height: 100%;
width: 100%;
background-color: rgba(0,0,0,0.2);
background-color: rgba(0, 0, 0, 0.2);
opacity: 0;
transition: opacity 250ms linear;
border-radius: 10px 10px 0 0;
Expand All @@ -68,10 +68,10 @@
.btn__text {
background-color: $brand-d;
color: #fff;
box-shadow: 0px 3px 0px 0px darken( $brand-d, 15% );
box-shadow: 0px 3px 0px 0px darken($brand-d, 15%);

&:hover {
background-color: darken( $brand-d, 5% );
background-color: darken($brand-d, 5%);
}
}
}
Expand All @@ -80,10 +80,10 @@
.btn__text {
background-color: $brand-e;
color: $brand-m;
box-shadow: 0px 3px 0px 0px darken( $brand-e, 15% );
box-shadow: 0px 3px 0px 0px darken($brand-e, 15%);

&:hover {
background-color: darken( $brand-e, 5% );
background-color: darken($brand-e, 5%);
}
}
}
Expand All @@ -92,10 +92,10 @@
.btn__text {
background-color: $brand-g;
color: #fff;
box-shadow: 0px 3px 0px 0px darken( $brand-g, 15% );
box-shadow: 0px 3px 0px 0px darken($brand-g, 15%);

&:hover {
background-color: darken( $brand-g, 5% );
background-color: darken($brand-g, 5%);
}
}
}
Expand Down
1 change: 0 additions & 1 deletion src/scss/partials/_cta.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
.btn {
width: 100%;
margin-bottom: 0;
text-decoration: none !important;
}

&__description {
Expand Down

0 comments on commit 9d1d57a

Please sign in to comment.