mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
27 lines
431 B
Vue
27 lines
431 B
Vue
<template>
|
|
<base-card class="card-with-columns">
|
|
<section class="column --left">
|
|
<slot name="left" />
|
|
</section>
|
|
<section class="column --right">
|
|
<slot name="right" />
|
|
</section>
|
|
</base-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.card-with-columns {
|
|
display: flex;
|
|
|
|
> .column {
|
|
flex-basis: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
</style>
|