Skip to content

Commit dd45b1e

Browse files
committed
Fix responsive
1 parent f4d83a7 commit dd45b1e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

web/src/components/Projects.astro

+3-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ const PROJECTS = [
107107
)
108108
})
109109
}
110-
<article class="relative items-center text-black rounded-lg bg-purple-50">
110+
<article
111+
class="min-h-60 relative items-center text-black rounded-lg bg-purple-50"
112+
>
111113
<a
112114
href="https://twitch.tv/midudev"
113115
class="group hover:scale-110 transition flex justify-center flex-col h-full items-center font-semibold text-purple-700 text-center text-xl"

web/src/layouts/Layout.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const { title } = Astro.props
1919
<title>{title}</title>
2020
<ViewTransitions />
2121
</head>
22-
<body>
22+
<body class="px-8">
2323
<slot />
2424
<style is:global>
2525
html {

0 commit comments

Comments
 (0)