mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
24 lines
306 B
Vue
24 lines
306 B
Vue
<template>
|
|
<div class="vp-card-grid">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.vp-card-grid {
|
|
display: grid;
|
|
gap: 16px 20px;
|
|
margin: 16px 0;
|
|
}
|
|
|
|
.vp-card-grid > * {
|
|
margin: 0 !important;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.vp-card-grid {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
</style>
|