neptune-web-wallet/src/components/common/CardBaseScrollable.vue

20 lines
316 B
Vue
Raw Normal View History

2025-11-07 18:29:58 +07:00
<script setup lang="ts"></script>
2025-11-05 04:14:37 +07:00
<template>
<div class="card-base scrollable">
<slot />
</div>
</template>
<style lang="scss" scoped>
.card-base {
@include card-base;
&.scrollable {
height: 100%;
max-height: calc(100vh - 100px);
overflow-y: auto;
}
}
</style>