23 lines
405 B
Vue
23 lines
405 B
Vue
<template>
|
|
<PageBlock
|
|
class="settings-notifications"
|
|
title="Notification settings"
|
|
sub-title="Set how you want to receive notifications"
|
|
>
|
|
<SettingsServiceNotificationTable />
|
|
|
|
<SettingsFinanceNotificationTable />
|
|
</PageBlock>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.settings-notifications{
|
|
--page-block-gap: 24px;
|
|
--page-block-padding: 24px;
|
|
}
|
|
</style>
|