Skip to content

Commit

Permalink
Adding single space before "}" of a single-line block to lint passes.
Browse files Browse the repository at this point in the history
  • Loading branch information
layenis committed May 5, 2024
1 parent db08d41 commit f7be996
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion scss/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

&:hover {
color: var(--#{$prefix}btn-hover-color);
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration;}
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration; }
background-color: var(--#{$prefix}btn-hover-bg);
border-color: var(--#{$prefix}btn-hover-border-color);
}
Expand Down
2 changes: 1 addition & 1 deletion scss/_card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

.card-link {
&:hover {
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration;}
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration; }
}

+ .card-link {
Expand Down
2 changes: 1 addition & 1 deletion scss/_dropdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
&:hover,
&:focus {
color: var(--#{$prefix}dropdown-link-hover-color);
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration;}
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration; }
@include gradient-bg(var(--#{$prefix}dropdown-link-hover-bg));
}

Expand Down
2 changes: 1 addition & 1 deletion scss/_nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
&:hover,
&:focus {
color: var(--#{$prefix}nav-link-hover-color);
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration;}
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration; }
}

&:focus-visible {
Expand Down
2 changes: 1 addition & 1 deletion scss/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
&:hover,
&:focus {
color: var(--#{$prefix}navbar-brand-hover-color);
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration;}
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration; }
}
}

Expand Down
2 changes: 1 addition & 1 deletion scss/_pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
&:hover {
z-index: 2;
color: var(--#{$prefix}pagination-hover-color);
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration;}
@if ($link-hover-decoration != underline) { text-decoration: $link-hover-decoration; }
background-color: var(--#{$prefix}pagination-hover-bg);
border-color: var(--#{$prefix}pagination-hover-border-color);
}
Expand Down

0 comments on commit f7be996

Please sign in to comment.