Skip to content

Commit

Permalink
correct some mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Aug 20, 2024
1 parent e9d58f4 commit 2495ea9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Frontpage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
const paragraphStyle = 'mb-3 font-normal text-gray-700 dark:text-gray-400 leading-tight';
const arrowStyle = 'ms-2 h-6 w-6 text-white';
const buttonStyle = 'w-fit';
const galleryStyle = 'grid-cols-2 gap-y-12';
const galleryStyle = 'grid-cols-1 md:grid-cols-2 gap-y-12';
const cardStyle = 'p-6 m-4 w-full';
</script>

Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
import Frontpage from '$lib/components/Frontpage.svelte';
</script>

<AbstractContent showBottomNavbar={false}>
<AbstractContent showBottomNavbar={true}>
<Frontpage />
</AbstractContent>
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
'./src/**/*.{html,js,svelte,ts}',
'./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}'
],
darkMode: 'class',
darkMode: 'selector',
theme: {
extend: {
colors: {
Expand Down

0 comments on commit 2495ea9

Please sign in to comment.