add: React Bootstrap Framework & Argon Dashboard 2

This commit is contained in:
2022-07-02 16:18:45 +00:00
parent d96ff1bebc
commit dd9d6bb602
306 changed files with 55600 additions and 53 deletions

View File

@ -0,0 +1,46 @@
// for social buttons
@mixin social-buttons-color ($color, $state-color) {
background-color: $color;
color: $white;
&:focus,
&:hover {
background-color: $state-color;
color: $white;
}
&:active,
&:focus,
&:active:focus {
box-shadow: none;
}
&.btn-simple {
color: $state-color;
background-color: transparent;
background-image: none !important;
box-shadow: none;
border: none;
&:hover,
&:focus,
&:hover:focus,
&:active,
&:hover:focus:active {
color: $state-color;
background: transparent !important;
box-shadow: none !important;
}
}
&.btn-neutral {
color: $color;
background-color: $white;
&:hover,
&:focus,
&:active {
color: $state-color;
}
}
}