Skip to content

Commit

Permalink
Makes the hero wider so it does not look tiny on larger screens, same…
Browse files Browse the repository at this point in the history
… with the footer and provides more space to the hero.
  • Loading branch information
bmartinez287 committed Nov 12, 2024
1 parent 1676416 commit 184ddd3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const navigation = {
---

<footer class="dark:bg-transparent">
<div class="max-w-4xl mx-auto py-12 px-6 lg:px-0 lg:py-16">
<div class="max-w-7xl mx-auto p-8">
<div class="pb-8 xl:grid xl:grid-cols-3 xl:gap-8">
<div class="grid grid-cols-auto gap-8 xl:col-span-4">
<div class="md:grid md:grid-cols-4 md:gap-8">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import {

<header class="w-full p-8">
<nav
class="flex justify-between items-center content-center max-w-4xl mx-auto"
class="flex justify-between items-center content-center"
aria-label="Main"
>
<a href="/" class="relative block cursor-pointer -ml-2">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { CloudIcon } from "@heroicons/react/24/solid/index.js"
---

<div class="mt-2 pt-8 sm:mt-12 sm:pt-24 pb-32 relative overflow-x-hidden">
<div class="z-10 max-w-4xl mx-auto relative">
<div class="z-10 sm:max-w-4xl max-w-7xl mx-auto relative">
<div class="max-w-2xl px-6 lg:px-0">
<h1 class="text-5xl font-bold dark:text-white">
Docker-based PHP development environments.
Expand Down

0 comments on commit 184ddd3

Please sign in to comment.