重命名CubeListPager和CubeListToolbarSearch
Yann authored at 2025-07-28 22:53:20 Yann committed at 2025-07-28 23:04:14
394.00 B
cube-front
<script setup lang="ts">
// 无需特殊逻辑
</script>

<template>
  <div class="tm-content">
    <slot></slot>
  </div>
</template>

<style lang="scss" scoped>
.tm-content {
  height: 100%;
  overflow: auto;
  padding: 16px;

  &::-webkit-scrollbar {
    width: 6px;
  }

  &::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb, #c8d4c8);
    border-radius: 3px;
  }
}
</style>