From 7ab78aab9c6fb06a5192365432fdaabe726a1a83 Mon Sep 17 00:00:00 2001 From: "wombfrk.exe" Date: Fri, 12 Jun 2026 14:29:04 +0530 Subject: [PATCH 1/2] fix(hero): improve layout balance on large desktop screens (1440px+) - Add id='hero-section' to hero
for targeted CSS overrides - Add class='hero-img' and proper alt text to the unconstrained hero image - Add @media (min-width: 1440px) block in style.css to: * Constrain hero-img to max-height: 520px with object-fit: contain so it cannot inflate the section height on wide screens * Reduce section min-height from 716px to 600px (Tailwind override) so content drives the layout height instead of a hard floor * Tighten column gap from 48px (gap-12) to 40px for better proportion * Reduce main top-padding from 96px (pt-24) to 80px to close the excess whitespace between the fixed nav and hero content No mobile (<768px) or tablet (<1024px) layouts are affected. No site-wide typography, spacing, or unrelated components modified. --- index.html | 4 ++-- style.css | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 2685347..3449b26 100644 --- a/index.html +++ b/index.html @@ -303,7 +303,7 @@
-
+
Building DemonDie OS...

@@ -343,7 +343,7 @@

- + DemonDie community hero graphic
diff --git a/style.css b/style.css index 134669a..611a3ea 100644 --- a/style.css +++ b/style.css @@ -700,6 +700,36 @@ h1 { } } +/* ── Large desktop hero polish (1440px and above) ── */ +/* + * On wide displays the hero's two-column layout can suffer from: + * - Excessive vertical height caused by an unconstrained hero image + * - The hardcoded min-h-[716px] Tailwind class inflating empty space + * - The pt-24 (96px) main padding creating a large gap below the nav + * - The gap-12 (48px) column gap feeling stretched across a 1280px container + * These rules are strictly additive overrides; no existing breakpoint is touched. + */ +@media (min-width: 1440px) { + /* Constrain the hero image so it can't drive up section height */ + .hero-img { + max-height: 520px; + width: 100%; + object-fit: contain; + object-position: center; + } + + /* Override Tailwind's min-h-[716px] and tighten column gap */ + #hero-section { + min-height: 600px; + column-gap: 40px; + } + + /* Close the excess gap between the fixed nav (~64px) and hero content */ + main#home { + padding-top: 80px; + } +} + @media (max-width: 620px) { .nav, .section, From 704019e235aed790fe8a18489b4a81b4276291bd Mon Sep 17 00:00:00 2001 From: "wombfrk.exe" Date: Fri, 12 Jun 2026 15:14:57 +0530 Subject: [PATCH 2/2] Added auto assign feature --- .github/workflows/auto-assign.yml | 7 +++++++ .github/workflows/stale-check.yml | 8 ++++++++ 2 files changed, 15 insertions(+) create mode 100644 .github/workflows/auto-assign.yml create mode 100644 .github/workflows/stale-check.yml diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml new file mode 100644 index 0000000..aaaae33 --- /dev/null +++ b/.github/workflows/auto-assign.yml @@ -0,0 +1,7 @@ +name: Auto Assign Issue +on: + issue_comment: + types: [created] +jobs: + assign: + uses: Demon-Die/.github/.github/workflows/auto-assign-issue.yml@main \ No newline at end of file diff --git a/.github/workflows/stale-check.yml b/.github/workflows/stale-check.yml new file mode 100644 index 0000000..ecea06d --- /dev/null +++ b/.github/workflows/stale-check.yml @@ -0,0 +1,8 @@ +name: Stale Assignment Check +on: + schedule: + - cron: '0 9 * * *' + workflow_dispatch: +jobs: + check: + uses: Demon-Die/.github/.github/workflows/stale-assignment-check.yml@main \ No newline at end of file