You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 29, 2024. It is now read-only.
need help !!!
:root {
--color-light:#e4e3dd;
--color-dark:#333333;
--color-info:#10a5e8;
--color-warning:#d2ae0a;
--color-danger:#f90d0d;
--color-success:#359c08;
}
@define-extend rounded_button {
display: inline-block;
border-radius:4px;
padding:5px 10px;
font: var(--color-light) 14px ;
background-color: var(--color-dark)
}
@define-mixin bg_button $color, $style {
.btn-$(color) {
@extend rounded_button;
background-color: $style;
&:hover {
opacity: 0.9;
}
}
}
@mixin bg_button light, var(----color-light);
@mixin bg_button success,var(----color-success);