Skip to content

Commit

Permalink
feat: remove extraneous borders
Browse files Browse the repository at this point in the history
  • Loading branch information
shezard committed Feb 11, 2024
1 parent 07bceeb commit 77b7c9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Subject.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

{#if $image}
<div class:paused>
<img src={$image.url} alt={$image.alt} />
<img src={$image.url} alt={$image.alt} class="mx-auto"/>
<a
href="https://unsplash.com/@{$image.author}"
class="text-xs inline-block px-2 py-2"
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</script>

<div class="w-screen flex justify-center">
<div class="columns-1 flex flex-col justify-center mx-auto overflow-y-hidden">
<div class="columns-1 flex flex-col justify-center w-screen overflow-y-hidden">
<header>
<Menu />
<Subject />
Expand Down

0 comments on commit 77b7c9a

Please sign in to comment.