Disable selection and open website link on _blank.
This commit is contained in:
parent
d119b3bb21
commit
d16d8c6ce3
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
</section>
|
||||
</main>
|
||||
<footer>
|
||||
2021 © <a href="https://johnespiritu.dev">John Espiritu</a>
|
||||
2021 © <a href="https://johnespiritu.dev" target="_blank">John Espiritu</a>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="app.js"></script>
|
||||
|
|
|
|||
Reference in New Issue