Skip to content

Commit

Permalink
deploy to heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
redahaq committed Nov 25, 2019
1 parent f2eed2c commit 8d11948
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,19 @@ button {
padding-left: var(--space-s);
}

button:hover {
}

.fa-search {
color: var(--mystic);
}

.fa-search:hover {
color: var(--glass);
transition: 0.2s ease-in-out;
transform: scale(1.08);
/* transform: scale(1.08); */
transform: rotate(360deg) scale(1.08);

}

ul {
Expand Down
4 changes: 2 additions & 2 deletions src/server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const http = require('http');
const router = require('./router.js');

const port = process.env.PORT || 3000;
const server = http.createServer(router);

server.listen(3000, () => console.log("Server listening on port 3000. Ready to accept requests :)"));
server.listen(port, () => console.log("Server listening on port 3000. Ready to accept requests :)"));

0 comments on commit 8d11948

Please sign in to comment.