mirror of
https://github.com/bitinflow/ui.git
synced 2026-03-13 13:45:59 +00:00
37 lines
554 B
Vue
37 lines
554 B
Vue
<template>
|
|
<div
|
|
class="overflow-y-auto h-screen"
|
|
:class="`${variant}`"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BitinflowScreenScrollContainer",
|
|
|
|
props: {
|
|
variant: {
|
|
type: String,
|
|
default: 'light'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.light::-webkit-scrollbar-thumb {
|
|
@apply bg-gray-200;
|
|
}
|
|
.light::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-gray-200;
|
|
}
|
|
.dark .light::-webkit-scrollbar-thumb {
|
|
@apply bg-base-800;
|
|
}
|
|
.dark .light::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-base-800;
|
|
}
|
|
</style>
|