Skip to content

Instantly share code, notes, and snippets.

@Daltonic
Last active March 24, 2021 09:37
Show Gist options
  • Save Daltonic/d0ef525cc1d3027cc4505a546c6379bd to your computer and use it in GitHub Desktop.
Save Daltonic/d0ef525cc1d3027cc4505a546c6379bd to your computer and use it in GitHub Desktop.
Tinder clone App.vue
<template>
<div id="app">
<router-view :key="$route.path"/>
</div>
</template>
<script>
export default {
name: "app",
};
</script>
<style>
* {
margin: 0;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment