mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
211 B
14 lines
211 B
2 years ago
|
<template>
|
||
|
<NuxtLayout>
|
||
2 years ago
|
<div class="w-full nc-container">
|
||
|
<NuxtPage />
|
||
|
</div>
|
||
2 years ago
|
</NuxtLayout>
|
||
|
</template>
|
||
2 years ago
|
|
||
|
<style scoped>
|
||
|
.nc-container {
|
||
|
height: calc(100vh - var(--header-height));
|
||
|
}
|
||
|
</style>
|