Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(styles): fixes rem syntax for negative values
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Messerle committed Apr 30, 2015
1 parent aa9058f commit 2fef6ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/chips/chips.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ $contact-chip-name-width: rem(12) !default;
}
.md-chip-remove-container {
display: inline-block;
margin-right: -rem(0.5);
margin-right: rem(-0.5);
}
.md-chip-remove {
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion src/components/toolbar/toolbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolbar-tall-height: 128px !default;
$toolbar-indent-margin: 64px !default;
$toolbar-padding: 16px !default;

$icon-button-margin-offset: -rem(0.800) !default;
$icon-button-margin-offset: rem(-0.800) !default;

md-toolbar {
box-sizing: border-box;
Expand Down

0 comments on commit 2fef6ca

Please sign in to comment.