Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcc committed Jan 11, 2019
0 parents commit 3feacc4
Show file tree
Hide file tree
Showing 52 changed files with 47,055 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.env
.next
out
.cache
dist
3 changes: 3 additions & 0 deletions .nowignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.cache
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
}
5 changes: 5 additions & 0 deletions common/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dependencies": {
"sass": "^1.15.3"
}
}
11 changes: 11 additions & 0 deletions common/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
html,
body,
#app {
height: 100%;
}

.player-container {
width: 100%;
max-width: 800px;
margin: 0 auto;
}
Loading

0 comments on commit 3feacc4

Please sign in to comment.