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 e76c5be commit c97c1df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 class="rounded-t" src={$image.url} alt={$image.alt} />
<img src={$image.url} alt={$image.alt} />
<a
href="https://unsplash.com/@{$image.author}"
class="text-xs inline-block px-2 py-2"
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import Menu from '$lib/components/Menu.svelte';
</script>

<div class="container mx-auto flex justify-center pt-2">
<div class="columns-1 flex flex-col justify-center card w-[400px] overflow-y-hidden">
<div class="w-full flex justify-center">
<div class="columns-1 flex flex-col justify-center w-[400px] overflow-y-hidden">
<header>
<Menu />
<Subject />
Expand Down

0 comments on commit c97c1df

Please sign in to comment.