koel/resources/assets/js/components/screens/ScreenBase.vue

20 lines
415 B
Vue
Raw Normal View History

2024-04-04 22:20:42 +00:00
<template>
<section class="max-h-full min-h-full w-full flex flex-col transform-gpu">
<slot name="header" />
<main
v-koel-overflow-fade
class="overflow-scroll flex flex-col b-16 md:b-6 p-6 flex-1 place-content-start"
>
<slot />
</main>
</section>
</template>
<style lang="postcss" scoped>
main {
-ms-overflow-style: -ms-autohiding-scrollbar;
2024-08-23 08:54:25 +00:00
overflow: hidden;
2024-04-04 22:20:42 +00:00
}
</style>