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

46 lines
474 B
SCSS
Raw Normal View History

2021-12-16 12:21:24 +01:00
.outlined {
&:focus,
&:active {
outline: black;
outline-style: solid;
}
}
a {
@extend .outlined;
}
2020-04-21 10:50:26 +02:00
button,
2021-12-16 12:21:24 +01:00
.btn {
@extend .outlined;
2020-04-21 10:50:26 +02:00
@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;
}