scrollbars are hidden

This commit is contained in:
zurdi zurdo
2023-03-14 19:28:12 +01:00
parent d8e075f72c
commit 952c4f0715
2 changed files with 26 additions and 2 deletions

View File

@@ -27,3 +27,27 @@ function getRoms(platformSlug){
</v-app>
</template>
<style>
/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
scrollbar-width: none;
scrollbar-color: #808080 #ffffff;
}
/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 0px;
}
*::-webkit-scrollbar-track {
background: #ffffff;
}
*::-webkit-scrollbar-thumb {
background-color: #808080;
border-radius: 10px;
border: 3px solid #ffffff;
}
</style>

View File

@@ -73,10 +73,10 @@ onMounted(() => { if(currentPlatformSlug){ getRoms(currentPlatformSlug) } })
transition: opacity .4s ease-in-out;
}
.rom-title.on-hover {
opacity: 0.85;
opacity: 1;
}
.rom-title:not(.on-hover) {
opacity: 1;
opacity: 0.85;
}
.v-card.on-hover {