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 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,