funky-framadate-front/src/styles/partials/_buttons.scss

36 lines
354 B
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
button,
.btn,
.back {
@extend .button;
}
.btn--full {
@extend .is-block;
}
button {
&.is-white {
&:hover {
background: $secondary_color;
color: $white;
}
}
}
.btn-primary {
2020-04-21 10:50:26 +02:00
@extend .is-primary;
color: $white !important;
}
.is-warning {
2020-04-21 10:50:26 +02:00
@extend .is-warning;
}
.btn--info {
@extend .is-info;
}
.btn--danger {
@extend .is-danger;
}