Skip to content

Commit

Permalink
Responsive design
Browse files Browse the repository at this point in the history
  • Loading branch information
holybaechu committed Feb 24, 2024
1 parent ea7bf33 commit 420ae4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export let title = "";
</script>

<div class="h-80 bg-[#ffffff04] rounded-lg outline outline-1 outline-[#cbd5e11a] p-6 space-y-2">
<div class="h-[430px] lg:h-80 bg-[#ffffff04] rounded-lg outline outline-1 outline-[#cbd5e11a] p-6 space-y-2">
<div class="text-2xl font-semibold">{title}</div>
<div class="text-md text-gray-400">
<slot/>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="flex h-56 bg-[#00000025] justify-between">
<div class="flex flex-col p-10 h-full space-y-16 text-gray-400">
<div class="flex bg-[#00000025] flex-col sm:flex-row justify-between">
<div class="flex flex-col p-10 space-y-2 text-gray-400">
<a target="_blank" href="/contact">
<div class="text-2xl font-semibold">RappyTV</div>
<div class="text-md">© {new Date().getFullYear()} RappyTV</div>
Expand All @@ -9,7 +9,7 @@
</div>

<!-- Links -->
<div class="flex p-10 text-gray-400 text-right space-x-6">
<div class="flex p-10 text-gray-400 sm:text-right space-x-4">
<div class="flex flex-col space-y-4">
<a href="/docs/privacy">
Privacy Policy
Expand Down

0 comments on commit 420ae4f

Please sign in to comment.