Files
cursor-byok/frontend/src/components/ui/Card.vue
T
2026-06-30 10:38:52 +08:00

13 lines
269 B
Vue

<script setup></script>
<template>
<div
class="rounded-[8px] p-[1px]"
style="background: linear-gradient(to bottom, #656565 0%, #3A3A3A 10px, #3A3A3A 100%);"
>
<div class="rounded-[7px] bg-[#292929] p-4">
<slot />
</div>
</div>
</template>