Skip to content

Commit b3f7c98

Browse files
authored
Merge pull request #102 from d3j1x/main
fix margin
2 parents 9bddc9b + fec41ef commit b3f7c98

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/lib/components/downloadComponents/DownloadDesk.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="hero min-h-screen">
66
<div class="container mx-auto max-w-xl space-y-12 p-6 lg:max-w-7xl lg:px-8">
7-
<div>
7+
<div class="mt-8">
88
<h2 class="text-center text-3xl font-bold sm:text-5xl">SMX - Desktop</h2>
99
<p class="mx-auto mt-4 max-w-3xl text-center text-xl">
1010
Explore the latest features that enhance your learning experience and make it even more

src/lib/components/layoutComponents/Header.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import smxLogo from '$lib/img/logo/smxlogo.png';
3-
let mynavlink = 'text-sm';
3+
let mynavlink = 'text-sm ml-4';
44
</script>
55

66
<div data-theme="black" class="navbar bg-base-100 fixed top-0 z-50 shadow-sm font-extrabold jus">

src/routes/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</svelte:head>
1717

1818
<Header />
19-
19+
<div class="mt-10"></div>
2020
{@render children()}
2121

2222
<Footer />

0 commit comments

Comments
 (0)