File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
src/Exceptionless.Web/ClientApp/src/routes/(app) Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 10
10
import { validate } from ' $shared/validation' ;
11
11
import { setModelValidator , useMiddleware } from ' @exceptionless/fetchclient' ;
12
12
import { useQueryClient } from ' @tanstack/svelte-query' ;
13
+ import { fade } from ' svelte/transition' ;
13
14
14
15
import { type NavigationItemContext , routes } from ' ../routes' ;
15
16
import FooterLayout from ' ./(components)/layouts/Footer.svelte' ;
130
131
<div class =" w-full text-secondary-foreground" >
131
132
<main class =" px-4 pt-4" >
132
133
<NavigationCommand bind:open ={isCommandOpen } routes ={filteredRoutes } />
133
- {@render children ()}
134
+ {#key $page .url .pathname }
135
+ <div in:fade ={{ delay : 150 , duration : 150 }} out:fade ={{ duration : 150 }}>
136
+ {@render children ()}
137
+ </div >
138
+ {/ key }
134
139
</main >
135
140
136
141
<FooterLayout ></FooterLayout >
You can’t perform that action at this time.
0 commit comments