We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04c23f9 commit a68008eCopy full SHA for a68008e
1 file changed
src/routes/photography/+page.svelte
@@ -66,7 +66,7 @@
66
67
<h1 class="text-5xl text-center m-4 pt-1">Photography</h1>
68
69
-<div class="grid grid-cols-3 grid-flow-row-dense gap-10 m-4 p-4">
+<div class="grid lg:grid-cols-3 md:grid-cols-2 grid-cols-1 grid-flow-row-dense gap-10 m-4 p-4">
70
<!-- {#each media as item}
71
{#if item.image}
72
{#if item.type == "panorama_landscape"}
@@ -98,7 +98,7 @@
98
99
{#each media1 as item}
100
101
- <div class="self-center col-span-3 " id={item.type}>
+ <div class="self-center lg:col-span-3 md:col-span-2 col-span-1" id={item.type}>
102
<h3 class="lg:text-3xl md:text-xl text-l text-center">{item.text}</h3>
103
104
<img src={item.image} alt={item.alt} class="rounded-lg" id={item.type}>
0 commit comments