From 1649f91a754fa4613ddcd2fd0d1dc486f09f00a9 Mon Sep 17 00:00:00 2001 From: Dillon Fagan Date: Thu, 25 Mar 2021 21:34:04 -0400 Subject: [PATCH 1/2] Change gap-3 to space-x-3 --- src/components/Scroller.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Scroller.svelte b/src/components/Scroller.svelte index 6b00615..20f9206 100644 --- a/src/components/Scroller.svelte +++ b/src/components/Scroller.svelte @@ -6,7 +6,7 @@ export let things = []; -
+
{#each things as thing}
From 025ce8b678ea94e7761cae077092e1c66b44b06b Mon Sep 17 00:00:00 2001 From: Dillon Fagan Date: Thu, 25 Mar 2021 21:44:25 -0400 Subject: [PATCH 2/2] Add webkit box shadow --- src/routes/_layout.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/routes/_layout.svelte b/src/routes/_layout.svelte index c055fd4..462e8c5 100644 --- a/src/routes/_layout.svelte +++ b/src/routes/_layout.svelte @@ -24,12 +24,14 @@ .hovers { box-shadow: 2px 2px 0 #000000; + -webkit-box-shadow: 2px 2px 0px 0px #000000; @apply transform duration-200; } .hovers:focus, .hovers:hover { box-shadow: 4px 4px 0 #000000; + -webkit-box-shadow: 4px 4px 0px 0px #000000; @apply scale-105; } }