Skip to content

Commit d13b4cf

Browse files
committed
styling
1 parent 9fb4f4f commit d13b4cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/lib/config/navigation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ function buildDynamicEntitiesItems(): NavigationItem[] {
259259
const items: NavigationItem[] = [
260260
{
261261
href: "/dynamic-entities/system",
262-
label: "1. System Dynamic Entities",
262+
label: "System Dynamic Entities",
263263
iconComponent: Settings,
264264
},
265265
];

src/routes/(protected)/dynamic-entities/system/[id]/crud/+page.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@
786786
e.preventDefault();
787787
handleCreate();
788788
}}
789-
class="p-6"
789+
class="bg-white p-6 dark:bg-gray-800"
790790
>
791791
<div class="space-y-4">
792792
{#each Object.entries(properties) as [fieldName, fieldDef]}
@@ -919,7 +919,7 @@
919919
e.preventDefault();
920920
handleUpdate();
921921
}}
922-
class="p-6"
922+
class="bg-white p-6 dark:bg-gray-800"
923923
>
924924
<div class="space-y-4">
925925
{#each Object.entries(properties) as [fieldName, fieldDef]}
@@ -1047,7 +1047,7 @@
10471047
</button>
10481048
</div>
10491049

1050-
<div class="p-6">
1050+
<div class="bg-white p-6 dark:bg-gray-800">
10511051
<dl class="space-y-4">
10521052
{#each Object.entries(properties) as [fieldName, fieldDef]}
10531053
{@const recordData = getRecordData(selectedRecord)}

0 commit comments

Comments
 (0)