Skip to content

Commit

Permalink
fix(MdLayout): remove breakpoint margins (#1457)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuell1 authored and marcosmoura committed Jan 29, 2018
1 parent ae49a63 commit c568fe3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MdLayout/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}

@mixin md-layout-small {
@media (max-width: #{$md-breakpoint-small - 16px}) {
@media (max-width: #{$md-breakpoint-small}) {
@content;
}
}

@mixin md-layout-medium {
@media (max-width: #{$md-breakpoint-medium - 16px}) {
@media (max-width: #{$md-breakpoint-medium}) {
@content;
}
}
Expand Down

0 comments on commit c568fe3

Please sign in to comment.