File tree Expand file tree Collapse file tree 6 files changed +22
-16
lines changed
Expand file tree Collapse file tree 6 files changed +22
-16
lines changed Original file line number Diff line number Diff line change 11<!doctype html>
22< html lang ="en ">
3- < head >
4- < meta charset ="utf-8 " />
5- < meta name ="viewport " content ="width=device-width, initial-scale=1 " />
6- %sveltekit.head%
7- </ head >
8- < body data-sveltekit-preload-data ="hover ">
9- < div style ="display: contents "> %sveltekit.body%</ div >
10- </ body >
11- </ html >
3+
4+ < head >
5+ < meta charset ="utf-8 " />
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1 " />
7+ %sveltekit.head%
8+ < style >
9+ html {
10+ background-image : url ('assets/bg.jpg' );
11+ }
12+ </ style >
13+ </ head >
14+
15+ < body data-sveltekit-preload-data ="hover ">
16+ < div style ="display: contents "> %sveltekit.body%</ div >
17+ </ body >
18+
19+ </ html >
Original file line number Diff line number Diff line change 11// Export all lib items for easy access in routes
2- export { default as favicon } from './assets/favicon.svg' ;
3- export { default as logo } from './assets/logo.jpg'
2+ export { default as favicon } from './assets/favicon.svg' ;
Original file line number Diff line number Diff line change 11<script lang =" ts" >
22 import ' ./layout.css' ;
3+
34 import { favicon } from ' $lib' ;
45 // import { NavBar } from '$components';
56 import { Footer } from ' $components' ;
1112 <link rel ="icon" href ={favicon } />
1213</svelte:head >
1314<div class =" bg" >
14- <div class =" backdrop-blur-[15px] p-5 mt-50 mr-[25%] ml-[25%] text-center border-3 border-white rounded-md" >
15+ <div
16+ class =" mt-50 mr-[25%] ml-[25%] rounded-md border-3 border-white p-5 text-center backdrop-blur-[15px]"
17+ >
1518 {@render children ()}
1619 <div class =" mt-5" >
1720 <Footer />
Original file line number Diff line number Diff line change @@ -66,10 +66,6 @@ html {
6666 font-size : 24px ;
6767}
6868
69- html {
70- background-image : url ('src/lib/assets/bg.jpg' );
71- }
72-
7369a {
7470 text-decoration : underline dotted;
7571}
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments