Skip to content

Commit

Permalink
refactor: Fix regressions due to reordering @includes in #1265 (#1300)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfranqueiro committed Sep 14, 2017
1 parent 648f985 commit 7235135
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 4 additions & 5 deletions packages/mdc-card/mdc-card.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//
//
// Copyright 2016 Google Inc. All Rights Reserved.
//
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand Down Expand Up @@ -168,7 +168,6 @@
align-items: flex-start;
justify-content: space-between;
box-sizing: border-box;
padding: 0;

// postcss-bem-linter: ignore
.mdc-card__actions--vertical {
Expand Down
6 changes: 2 additions & 4 deletions packages/mdc-select/mdc-select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
border: none;
border-bottom: 1px solid rgba(black, .12);
border-radius: 0;
background: none;
background-repeat: no-repeat;
background-position: right center;
font-family: Roboto, sans-serif;
Expand Down Expand Up @@ -184,7 +183,8 @@

width: 250px;
padding: 0;
border: 1px solid;
border-width: 1px;
border-style: solid;
outline: none;
appearance: none;

Expand Down Expand Up @@ -239,8 +239,6 @@
.mdc-list-item:checked {
@include mdc-theme-prop(background-color, background);

background-color: rgba(black, .12);

@include mdc-theme-dark {
@include mdc-theme-prop(background-color, text-primary-on-dark);
}
Expand Down

0 comments on commit 7235135

Please sign in to comment.