8000 fix: use of declarations after nested rules · coreui/coreui@ea0300c · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ea0300c

Browse files
committed
fix: use of declarations after nested rules
1 parent f356523 commit ea0300c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scss/_modal.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959

6060
// When fading in the modal, animate it to slide down
6161
.modal.fade & {
62-
@include transition($modal-transition);
6362
transform: $modal-fade-transform;
63+
@include transition($modal-transition);
6464
}
6565
.modal.show & {
6666
transform: $modal-show-transform;

scss/_reboot.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,9 +498,9 @@ legend {
498498
width: 100%;
499499
padding: 0;
500500
margin-bottom: $legend-margin-bottom;
501-
@include font-size($legend-font-size);
502501
font-weight: $legend-font-weight;
503502
line-height: inherit;
503+
@include font-size($legend-font-size);
504504

505505
+ * {
506506
clear: left; // 2

scss/_type.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
// Type display classes
3535
@each $display, $font-size in $display-font-sizes {
3636
.display-#{$display} {
37-
@include font-size($font-size);
3837
font-family: $display-font-family;
3938
font-style: $display-font-style;
4039
font-weight: $display-font-weight;
4140
line-height: $display-line-height;
41+
@include font-size($font-size);
4242
}
4343
}
4444

0 commit comments

Comments
 (0)
0