mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-17 23:13:11 +00:00
9 lines
292 B
SCSS
9 lines
292 B
SCSS
/* Set hover color for primary button to white (overrides color contrast defined in mixin) */
|
|
.btn-outline-primary:hover,
|
|
.btn-primary:focus,
|
|
.btn-primary:active,
|
|
.btn-primary.active,
|
|
.open > .dropdown-toggle.btn-primary {
|
|
color: #fff if($enable-important-utilities, !important, null);
|
|
}
|