Skip to content

Commit

Permalink
chore(website): ran migrator for deprecated division
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Aug 13, 2021
1 parent a0f0699 commit 98d2c58
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -6,7 +6,7 @@ $size: 2rem;
.button {
@include rmd-button-theme-update-var(icon-size, $size);

bottom: -$size / 2;
bottom: -$size * 0.5;
left: 1rem;
z-index: 300;

Expand Down
Expand Up @@ -20,7 +20,7 @@ $toc-z-index: 9;
@include rmd-utils-rtl {
left: $page-margin;
right: auto;
transform-origin: 2% ($rmd-icon-size / 2);
transform-origin: 2% ($rmd-icon-size * 0.5);
}
@include rmd-elevation(2);
@include rmd-theme-dark-elevation(2, true);
Expand All @@ -29,7 +29,7 @@ $toc-z-index: 9;
position: fixed;
right: $rmd-app-bar-lr-margin;
top: calc(#{rmd-app-bar-theme-var(height)} + #{$page-margin});
transform-origin: 98% ($rmd-icon-size / 2);
transform-origin: 98% ($rmd-icon-size * 0.5);
width: calc(100% - #{$rmd-app-bar-lr-margin * 2});
z-index: $toc-z-index;

Expand Down
Expand Up @@ -5,7 +5,7 @@

$page-margin: 1rem;
$button-size: 2rem;
$size-difference: ($rmd-button-icon-size - $button-size) / 2;
$size-difference: ($rmd-button-icon-size - $button-size) * 0.5;
$margin: $size-difference + $rmd-app-bar-lr-margin;
$toc-z-index: 9;

Expand Down

0 comments on commit 98d2c58

Please sign in to comment.