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

45 lines
463 B
SCSS

.outlined {
&:focus {
outline: black;
outline-style: solid;
}
}
a {
@extend .outlined;
}
button,
.btn {
@extend .outlined;
@extend .button;
}
.btn--full {
@extend .is-block;
}
button {
&.is-white {
&:hover {
background: $secondary_color;
color: $white;
}
}
}
.btn-primary {
@extend .is-primary;
color: $white !important;
}
.is-warning {
@extend .is-warning;
}
.btn--info {
@extend .is-info;
}
.btn--danger {
@extend .is-danger;
}