2020-06-19 09:14:03 +02:00
|
|
|
<script>
|
2020-11-25 16:30:10 +01:00
|
|
|
import { General, DangerZone, APIKeys } from "./tabs"
|
2021-04-21 13:43:58 +02:00
|
|
|
import { ModalContent, Tab, Tabs } from "@budibase/bbui"
|
2020-06-19 09:14:03 +02:00
|
|
|
</script>
|
|
|
|
|
2020-10-08 10:35:11 +02:00
|
|
|
<ModalContent
|
2020-10-05 12:13:09 +02:00
|
|
|
title="Settings"
|
|
|
|
showConfirmButton={false}
|
2021-05-04 12:04:42 +02:00
|
|
|
showCancelButton={false}
|
|
|
|
>
|
2020-10-05 12:13:09 +02:00
|
|
|
<div class="container">
|
2021-04-21 13:43:58 +02:00
|
|
|
<Tabs selected="General">
|
|
|
|
<Tab title="General">
|
|
|
|
<General />
|
|
|
|
</Tab>
|
|
|
|
<Tab title="API Keys">
|
|
|
|
<APIKeys />
|
|
|
|
</Tab>
|
|
|
|
<Tab title="Danger Zone">
|
|
|
|
<DangerZone />
|
|
|
|
</Tab>
|
|
|
|
</Tabs>
|
2020-10-05 12:13:09 +02:00
|
|
|
</div>
|
2020-10-08 10:35:11 +02:00
|
|
|
</ModalContent>
|
2020-06-19 09:14:03 +02:00
|
|
|
|
|
|
|
<style>
|
2020-09-30 11:24:16 +02:00
|
|
|
.container :global(section > header) {
|
|
|
|
/* Fix margin defined in BBUI as L rather than XL */
|
|
|
|
margin-bottom: var(--spacing-xl);
|
2020-06-19 09:14:03 +02:00
|
|
|
}
|
2020-10-02 13:22:49 +02:00
|
|
|
.container :global(textarea) {
|
|
|
|
min-height: 60px;
|
2020-06-19 09:14:03 +02:00
|
|
|
}
|
|
|
|
</style>
|