mixin btn-shadow must be defined before use.

This commit is contained in:
Kevin Ross 2015-11-04 14:23:20 -06:00
parent c9bc2e623b
commit e6027d6568

View File

@ -1,3 +1,11 @@
.btn-shadow() {
.shadow-z-1();
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
&:active:not(.btn-link) {
.shadow-z-1-hover();
}
}
.btn {
position: relative;
padding: 8px 30px;
@ -135,11 +143,3 @@
.btn-group-flat {
box-shadow: none !important;
}
.btn-shadow() {
.shadow-z-1();
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
&:active:not(.btn-link) {
.shadow-z-1-hover();
}
}