Skip to content

Commit

Permalink
style: Update getBseCSS code style
Browse files Browse the repository at this point in the history
  • Loading branch information
myxvisual committed May 22, 2018
1 parent 7a92df7 commit 74a89bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Theme/getBaseCSSText.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

const getBaseCSS = (theme: ReactUWP.ThemeType, themeClassName = "uwp-base", scrollBarStyleSelector = "*") => `* {
function getBaseCSS(theme: ReactUWP.ThemeType, themeClassName = "uwp-base", scrollBarStyleSelector = "*") {
return `* {
margin: 0;
padding: 0;
box-sizing: border-box;
Expand Down Expand Up @@ -49,5 +50,6 @@ ${scrollBarStyleSelector}::-webkit-scrollbar {
border-radius: none;
}
`;
}

export default getBaseCSS;

0 comments on commit 74a89bc

Please sign in to comment.