Skip to content

Commit

Permalink
adding feather icons; fix dblclick
Browse files Browse the repository at this point in the history
  • Loading branch information
lacymorrow committed Jan 26, 2021
1 parent af5f82f commit ace7c68
Show file tree
Hide file tree
Showing 10 changed files with 87 additions and 64 deletions.
2 changes: 1 addition & 1 deletion src/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link rel="stylesheet" href="vendor/pickr/pickr.nano.min.css"/>
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="vendor/pickr/pickr.min.js"></script>
<script type="text/javascript" src="vendor/feather/feather-icons.min.js"></script>
</head>
<body>
<div class="container" id="drag-file">
Expand All @@ -26,7 +27,8 @@
</svg>
</div>
</div>
<div class="drag-me"></div>
<div class="center-me"><i data-feather="target"></i></div>
<div class="drag-me"><i data-feather="move"></i></div>
</div>

<div class="settings">
Expand All @@ -44,15 +46,15 @@
<div class="setting-sight">
<label class="radio dot">
<input name="radio" type="radio" value="dot" checked>
<span>&bull;</span>
<span><i data-feather="disc"></i></span>
</label>
<label class="radio cross">
<input name="radio" value="cross" type="radio">
<span>&plus;</span>
<span><i data-feather="plus-circle"></i></span>
</label>
<label class="radio off">
<input name="radio" value="off" type="radio">
<span>off</span>
<span><i data-feather="eye-off"></i></span>
</label>
</div>

Expand Down

0 comments on commit ace7c68

Please sign in to comment.