Skip to content

Commit

Permalink
update baseCSS - (should) fix #47
Browse files Browse the repository at this point in the history
  • Loading branch information
dragma committed Mar 11, 2019
1 parent 05db09b commit 467ab11
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
4 changes: 0 additions & 4 deletions README.md
Expand Up @@ -70,10 +70,6 @@ Basically, `BaseCSS` takes a string prop, and append the default bootstrap layou
the default bootstrap layout CSS is :

```css
@-ms-viewport {
width: device-width;
}

html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
Expand Down
6 changes: 1 addition & 5 deletions src/components/BaseCSS/BaseCSS.tsx
Expand Up @@ -3,10 +3,6 @@ import { createGlobalStyle } from 'styled-components';
import { BaseCSSProps } from './types';

export default createGlobalStyle<BaseCSSProps>`
@-ms-viewport {
width: device-width;
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
Expand All @@ -19,6 +15,6 @@ export default createGlobalStyle<BaseCSSProps>`
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
${p => p.css}
`;

0 comments on commit 467ab11

Please sign in to comment.