Skip to content

Commit

Permalink
update icon
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Feb 27, 2022
1 parent 8cd2244 commit 0654c34
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Binary file modified public/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/components/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ const Dashboard = () => {

return (
<div className="dashboard-wrapper" onDoubleClick={handleDashBoardDoubleClick}>
<p className="hint-text">Just double click on any blank space to create a card.</p>
<p className="hint-text" onDoubleClick={(e) => e.stopPropagation()}>
Just double click on any blank space to create a card. Star me in <a href="https://github.com/justmemos/sticky-notes">GitHub</a>.
</p>
{notes.map((note) => {
return <StickyCard key={`${note.id}`} note={note} />;
})}
Expand Down
4 changes: 4 additions & 0 deletions src/less/dashboard.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@

> .hint-text {
@apply font-mono select-none p-2 text-sm text-gray-400;

> a {
@apply underline hover:text-gray-600;
}
}
}

0 comments on commit 0654c34

Please sign in to comment.