cartodb-4.42/lib/assets/javascripts/new-dashboard/components/Code/Jupyter.vue
2024-04-06 05:25:13 +00:00

29 lines
391 B
Vue

<template>
<div class="jupyter">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'JupyterBlock'
};
</script>
<style scoped lang="scss">
@import 'new-dashboard/styles/variables';
.jupyter {
margin: 16px 0;
padding: 20px 20px 20px 8px;
background-color: $white;
}
.jupyter > * {
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
}
</style>