Skip to content

Commit

Permalink
ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushikappani committed May 2, 2021
1 parent 1b148d6 commit a9bfb9c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
database.json
2 changes: 1 addition & 1 deletion main.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h6>LINKMARK | SAVE YOUR LINKS HERE </h6>
</tbody>
</table>
<br>
<div class="conteiner footer">
<div class="container footer">
<div class="row">
<div class="col-lg-12">
<h6>Made with 🤍 by <a target="_blank" href="https://kaushikappani.me">kaushik appani</a> </h6>
Expand Down
13 changes: 0 additions & 13 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,3 @@ for (let i = 0, len = buttons.length; i < len; i++) {
})
}
};

var getFavicon = function(){
var favicon = undefined;
var nodeList = document.getElementsByTagName("link");
for (var i = 0; i < nodeList.length; i++)
{
if((nodeList[i].getAttribute("rel") == "icon")||(nodeList[i].getAttribute("rel") == "shortcut icon"))
{
favicon = nodeList[i].getAttribute("href");
}
}
return favicon;
}
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@

h6 {
text-align: center;
margin: 2px
margin: 4px
}

.footer {
background-color: #121212;
position: fixed;
left: 0;
bottom: 0;
Expand Down

0 comments on commit a9bfb9c

Please sign in to comment.