Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-cskn committed Sep 16, 2023
1 parent 915ff07 commit 8e5c77c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,13 @@ comment/node_modules
.idea/
nginx/ssl/
*/node_modules/
grafana
mongo
.DS_Store
*/.DS_Store
*/.idea/
*/.gitignore
*/.git/
*/.gitmodules
*/.gitattributes
*/.gitkeep
2 changes: 1 addition & 1 deletion frontend/src/components/NavBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
text-gray-900 border border-gray-300 rounded-lg bg-gray-50 focus:ring-blue-500
focus:border-blue-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400
dark:text-white dark:focus:ring-gray-500 dark:focus:border-gray-500 cursor-not-allowed" disabled
placeholder="Searching currently disabled" required>
placeholder="Searching is currently disabled" required>
</div>
</form>
<button data-collapse-toggle="navbar-sticky" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-sticky" aria-expanded="false">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/routes/blog/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</script>

<NavBar/>
<div style="min-height: 100vh">
<div style="min-height: 100vh; margin-top: 100px">
<BlogSection {data}/>
</div>
<Footer/>
2 changes: 1 addition & 1 deletion frontend/src/routes/blog/[slug]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<NavBar/>

<div style="min-height: 100vh">
<div style="min-height: 100vh; margin-top: 100px">
<Blog blog={data.blog} comments={data.comments} />
</div>
<Footer/>

0 comments on commit 8e5c77c

Please sign in to comment.