mirror of
https://github.com/robonen/canvas-3d.git
synced 2026-03-20 02:44:40 +00:00
15 lines
217 B
Vue
15 lines
217 B
Vue
<template>
|
|
<div class="grid">
|
|
<slot/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-column-gap: 16px;
|
|
grid-row-gap: 16px;
|
|
}
|
|
</style>
|