mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-24 18:36:41 +07:00
20 lines
374 B
Vue
20 lines
374 B
Vue
<template>
|
|
<div :class="[$style.card, $attrs.class]">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup></script>
|
|
|
|
<style lang="scss" module>
|
|
.card {
|
|
border-radius: 8px;
|
|
border: 1px solid var(--color-line);
|
|
transition: all 0.25s;
|
|
|
|
&:hover {
|
|
background-color: var(--color-code-background);
|
|
border-color: var(--color-text-secondary);
|
|
}
|
|
}
|
|
</style>
|