Skip to content

Commit

Permalink
fix: add trailing semi's (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcullman committed Mar 21, 2019
1 parent dfcb1be commit c22d6d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scss/components/popover.scss
Expand Up @@ -39,7 +39,7 @@ $block: #{$fd-namespace}-popover;
white-space: nowrap;
z-index: $fd-popover-z-index;
border-radius: $fd-border-radius;
@include fd-var-color("background-color", $fd-popover-background-color, --fd-popover-background-color)
@include fd-var-color("background-color", $fd-popover-background-color, --fd-popover-background-color);
@if $fd-support-css-var-fallback {
box-shadow: 0 5px 20px 0 fd-color("neutral", 3), 0 2px 8px 0 fd-color("neutral", 2);
}
Expand Down
2 changes: 1 addition & 1 deletion scss/core/forms.scss
Expand Up @@ -152,7 +152,7 @@ select,
left: calc(50% - 10px/2);
}
&[multiple] {
@include fd-var-size("height", $fd-forms-height * 3)
@include fd-var-size("height", $fd-forms-height * 3);
height: calc(var(--fd-forms-height) * 3);
background-image: none;
padding-top: $fd-forms-padding;
Expand Down

0 comments on commit c22d6d5

Please sign in to comment.