Skip to content

Commit

Permalink
Post Schedule Panel: Fix Sass deprecation warning for division (#56412)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewserong authored Nov 22, 2023
1 parent aac7844 commit 799c807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor/src/components/post-schedule/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
height: auto;

// The line height + the padding should be the same as the button size.
padding: ( ( $button-size - $grid-unit-20 ) / 2 ) 12px;
padding: math.div($button-size - $grid-unit-20, 2) 12px;
line-height: $grid-unit-20;
}

0 comments on commit 799c807

Please sign in to comment.