Disable selection and open website link on _blank.

This commit is contained in:
John Espiritu 2021-07-25 22:43:12 +08:00
parent d119b3bb21
commit d16d8c6ce3
2 changed files with 5 additions and 1 deletions

4
dist/app.css vendored
View File

@ -3,6 +3,10 @@ body {
margin: 0;
background-color: rgb(240, 240, 244);
font-family: sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
main {

2
dist/index.html vendored
View File

@ -26,7 +26,7 @@
</section>
</main>
<footer>
2021 &copy; <a href="https://johnespiritu.dev">John Espiritu</a>
2021 &copy; <a href="https://johnespiritu.dev" target="_blank">John Espiritu</a>
</footer>
</div>
<script src="app.js"></script>