PageContent.vue 212 Bytes
Newer Older
abergavenny's avatar
abergavenny committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <div class="page-content">
    <slot />
  </div>
</template>

<style scoped>
.page-content {
  overflow: hidden;
  background-color: hsl(var(--clr-background));
  flex: 1;
  display: flex;
}
</style>