Skip to content

Commit

Permalink
Fix use of declarations after nested rules (deprecated in Sass 1.77.7) (
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond authored Jul 15, 2024
1 parent f406388 commit 7f8fed4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scss/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@

// When fading in the modal, animate it to slide down
.modal.fade & {
@include transition($modal-transition);
transform: $modal-fade-transform;
@include transition($modal-transition);
}
.modal.show & {
transform: $modal-show-transform;
Expand Down
2 changes: 1 addition & 1 deletion scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -499,9 +499,9 @@ legend {
width: 100%;
padding: 0;
margin-bottom: $legend-margin-bottom;
@include font-size($legend-font-size);
font-weight: $legend-font-weight;
line-height: inherit;
@include font-size($legend-font-size);

+ * {
clear: left; // 2
Expand Down
2 changes: 1 addition & 1 deletion scss/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
// Type display classes
@each $display, $font-size in $display-font-sizes {
.display-#{$display} {
@include font-size($font-size);
font-family: $display-font-family;
font-style: $display-font-style;
font-weight: $display-font-weight;
line-height: $display-line-height;
@include font-size($font-size);
}
}

Expand Down

1 comment on commit 7f8fed4

@wilyJ80
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

works? good job. looking forward new release 🙏

Please sign in to comment.