Skip to content

Commit

Permalink
Docs: use core mixins in a couple of places (#38236)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Mar 15, 2023
1 parent c400653 commit adf7b8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion site/assets/scss/_masthead.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

.animate-img {
> img {
transition: .2s ease-in-out transform; // stylelint-disable-line property-disallowed-list
@include transition(transform .2s ease-in-out);
}

&:hover > img {
Expand Down
2 changes: 1 addition & 1 deletion site/assets/scss/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

.navbar-brand {
color: $white;
transition: .2s ease-in-out transform; // stylelint-disable-line property-disallowed-list
@include transition(transform .2s ease-in-out);

&:hover {
transform: rotate(-5deg) scale(1.1);
Expand Down
2 changes: 1 addition & 1 deletion site/assets/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$bd-purple: #4c0bce;
$bd-violet: lighten(saturate($bd-purple, 5%), 15%); // stylelint-disable-line function-disallowed-list
$bd-purple-light: lighten(saturate($bd-purple, 5%), 45%); // stylelint-disable-line function-disallowed-list
$bd-accent: #ffe484;
$bd-accent: #ffe484;

$bd-gutter-x: 3rem;
$bd-callout-variants: info, warning, danger !default;
Expand Down

0 comments on commit adf7b8d

Please sign in to comment.