Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makes the hero wider so it does not look tiny on larger screens and other minor fixes #276

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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