Skip to content

Commit

Permalink
fix: add whitespace around operators in calc expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Nov 15, 2019
1 parent 52428d0 commit 02ee4b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/bootstrap/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ $timeline-collapse-arrow-padding-x: $padding-x-sm !default;

$timeline-event-width: 400px !default;
$timeline-event-height: 600px !default;
$timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset}- #{$card-border-width})) !default;
$timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$card-border-width})) !default;


// Upload
Expand Down
2 changes: 1 addition & 1 deletion packages/default/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1806,7 +1806,7 @@ $timeline-collapse-arrow-padding-x: $padding-x !default;

$timeline-event-width: 400px !default;
$timeline-event-height: 600px !default;
$timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset}- #{$card-border-width})) !default;
$timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$card-border-width})) !default;


// Upload
Expand Down
2 changes: 1 addition & 1 deletion packages/default/scss/grid/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@
width: $grid-group-dropclue-line-size;
height: calc(100% - #{$grid-group-dropclue-size});
top: $grid-group-dropclue-size;
left: calc( #{$grid-group-dropclue-size} - (#{$grid-group-dropclue-line-size} / 2) );
left: calc( #{$grid-group-dropclue-size} - #{$grid-group-dropclue-line-size / 2} );
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/default/scss/upload/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@

.k-file-name-size-wrapper {
margin-left: calc( #{$upload-item-image-width} + #{$spacer-x} );
margin-right: calc( #{$icon-size}*2 + 3.5em );
margin-right: calc( #{$icon-size * 2} + 3.5em );
min-height: $upload-item-image-height + ($upload-item-image-border * 2);
display: block;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion packages/material/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1899,7 +1899,7 @@ $timeline-collapse-arrow-padding-x: $padding-x-sm !default;

$timeline-event-width: 400px !default;
$timeline-event-height: 600px !default;
$timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset}- #{$card-border-width})) !default;
$timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$card-border-width})) !default;


// Upload
Expand Down

0 comments on commit 02ee4b6

Please sign in to comment.