Skip to content

Commit

Permalink
Merge pull request #135 from starboardcoop/issue/52
Browse files Browse the repository at this point in the history
Fix Safari CSS bugs
  • Loading branch information
dillonfagan authored Mar 26, 2021
2 parents 275c865 + 025ce8b commit 876f58f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Scroller.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
export let things = [];
</script>

<div class="flex flex-row gap-3 overflow-auto px-8 py-7">
<div class="flex flex-row space-x-3 overflow-auto px-8 py-7">
{#each things as thing}
<div>
<Card height="24" width="24">
Expand Down
2 changes: 2 additions & 0 deletions src/routes/_layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 876f58f

Please sign in to comment.