Skip to content

Commit

Permalink
[base] fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmorDarks committed Nov 1, 2016
1 parent 55b5b5c commit abe4642
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions base/_normalize.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// stylelint-disable selector-no-universal, selector-no-qualifying-type, selector-root-no-composition, selector-no-type, no-descending-specificity
// stylelint-disable selector-no-universal, selector-no-qualifying-type, selector-root-no-composition, selector-no-type

// =======================================
// *NORMALIZE
Expand Down Expand Up @@ -107,17 +107,14 @@ hr {
// ----
// 1. Correct the inheritance and scaling of font size in all browsers.
// 2. Correct the odd `em` font sizing in all browsers.
// 3. Contain overflow in all browsers.

pre {
font-family: monospace, monospace; // 1
font-size: 1em; // 2
overflow: auto; // 3
}

// ----
// Contain overflow in all browsers.

pre { overflow: auto; }

// ----
// Remove most spacing between table cells and border

Expand Down Expand Up @@ -166,15 +163,17 @@ strong { font-weight: inherit; }
// ----
// Add the correct font weight in Chrome, Edge, and Safari.

// stylelint-disable no-duplicate-selectors
b,
strong { font-weight: bolder; }
// stylelint-enable no-duplicate-selectors

// ----
// 1. Correct the inheritance and scaling of font size in all browsers.
// 2. Correct the odd `em` font sizing in all browsers.

code,
kdb,
kbd,
samp {
font-family: monospace, monospace; // 1
font-size: 1em; // 2
Expand Down

0 comments on commit abe4642

Please sign in to comment.