cartodb/lib/assets/javascripts/new-dashboard/components/Page.vue
2020-06-15 10:58:47 +08:00

34 lines
489 B
Vue

<template>
<section class="page">
<slot />
</section>
</template>
<script>
export default {
name: 'Page'
}
</script>
<style scoped lang="scss">
@import 'new-dashboard/styles/variables';
.page {
position: relative;
min-height: calc(100vh - 392px);
padding: 64px 0 120px;
border-bottom: 1px solid $border-color;
&--welcome,
&--settings,
&--data {
padding-top: 0;
}
}
.page.page__sticky-subheader {
padding: $subheader__height + 64px 0 120px;
}
</style>