mirror of
https://github.com/rommapp/romm.git
synced 2026-06-28 14:56:01 +00:00
scrollbars are hidden
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user