Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
fix: mixin transition name (it was crashing the build)
Browse files Browse the repository at this point in the history
  • Loading branch information
GusBaamonde committed Mar 12, 2019
1 parent bd8f260 commit 4128978
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/scss/core/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* @include transition(all,2s,ease); */
@mixin transition($what: all, $time: 0.25s, $how: ease) {
@mixin transition-all($what: all, $time: 0.25s, $how: ease) {
transition: $what $time $how;
}
/* variables*/
Expand Down
2 changes: 1 addition & 1 deletion assets/scss/modules/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
appearance: none;
font-family: $dp-font-family-proximanova;
border-radius: $dp-border-radius;
@include transition;
@include transition-all;

&.button-big {
font-size: $dp-font-button-big;
Expand Down
6 changes: 3 additions & 3 deletions assets/scss/templates/_guidelines.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
padding: 15px 0;
margin-right: 25px;
text-transform: uppercase;
@include transition;
@include transition-all;

&:before {
content: '';
Expand All @@ -37,7 +37,7 @@
border-bottom: 3px solid $dp-color-darkyellow;
bottom: 0;
right: 350px;
@include transition;
@include transition-all;
}

&:hover:before {
Expand All @@ -61,7 +61,7 @@
border-bottom: 3px solid $dp-color-darkyellow;
bottom: 0;
right: 0;
@include transition;
@include transition-all;
}

.main-colors {
Expand Down

0 comments on commit 4128978

Please sign in to comment.