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.
16 lines
237 B
16 lines
237 B
4 months ago
|
<template>
|
||
|
<div class="panels">
|
||
|
<div class="panel">DUMMY</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.panels {
|
||
|
@apply w-3/4 flex flex-col;
|
||
|
|
||
|
.panel {
|
||
|
@apply border-1 border-gray-200 p-6 rounded-lg;
|
||
|
}
|
||
|
}
|
||
|
</style>
|