-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update all dependencies * Remove ESLint for now (it may return, but it is causing more issues than it solves at the moment) * Add padding to radio button group * Remove uglify and extraneous stuff from webpack * Change from space to tab for visual accessibility
- Loading branch information
Showing
15 changed files
with
11,754 additions
and
11,895 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
|
||
### Generated Files | ||
# dist/ | ||
.yarn/ | ||
|
||
### Node template | ||
# Logs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Camelot Wheel</title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" /> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> | ||
<script type="text/javascript" src="./dist/cw.js"></script> | ||
<style> | ||
footer { | ||
display:flex; | ||
width: 100%; | ||
font-family: "Roboto Light"; | ||
font-size: 10px; | ||
justify-content:center; | ||
align-items:center; | ||
} | ||
</style> | ||
<meta charset="UTF-8"> | ||
<title>Camelot Wheel</title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500"/> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/> | ||
<script type="text/javascript" src="./dist/cw.js"></script> | ||
<style> | ||
footer { | ||
display: flex; | ||
width: 100%; | ||
font-family: "Roboto Light"; | ||
font-size: 10px; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="main"> | ||
|
||
</div> | ||
<footer>please report bugs here: <a href="https://github.com/geeves/camelot-wheel">https://github.com/geeves/camelot-wheel</a></footer> | ||
<footer> | ||
please report bugs here: <a href="https://github.com/geeves/camelot-wheel">https://github.com/geeves/camelot-wheel</a> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.