Julien Fastré 38ed02b514 Customization of buttons :
- new bt-show and bt-new classes
- add margin-right after i inside sc-button
2016-11-15 21:49:33 +01:00

17 lines
320 B
SCSS

.sc-button {
&.bt-submit, &.bt-create, &.bt-new {
@include button($green, $white);
}
&.bt-reset, &.bt-delete {
@include button($red, $white);
}
&.bt-action, &.bt-edit, &.bt-update, &.bt-show {
@include button($orange, $white);
}
> i.fa {
margin-right: 0.5em;
}
}