diff --git a/src/content/docs/blog/2022/06/22/packaging-automation-next-steps/index.mdx b/src/content/docs/blog/2022/06/22/packaging-automation-next-steps/index.mdx index 237c1cb5..04b04b2e 100644 --- a/src/content/docs/blog/2022/06/22/packaging-automation-next-steps/index.mdx +++ b/src/content/docs/blog/2022/06/22/packaging-automation-next-steps/index.mdx @@ -15,7 +15,7 @@ packaging templates from an upstream source (i.e. tarball). Before we really start this blog post off, I'd like to thank everyone who is supporting the project! All of the [OpenCollective](https://opencollective.com/serpent-os) contributions will make it easier for me to work full -time on Serpent OS =) Much love <3 +time on Serpent OS =) Much love <3 ![Look at all the buildiness](./Featured.webp) diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index 0fb5d459..e9ce4a95 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -32,7 +32,7 @@ import BoxSectionOutro from '@/components/splash/BoxSectionOutro.astro';

AerynOS

AerynOS is an independent performance-oriented Linux-based operating system that diverges significantly from traditional distributions whilst still aiming to provide a familiar and comfortable environment. The code-base is currently in an alpha "technical preview" stage, which means that it is not yet ready for widespread use. However, we are committed to eventually providing a stable and reliable operating system that will be easy to use and customize.

-
+
Get Started Learn More Support Us diff --git a/src/styles/global.css b/src/styles/global.css index 10569242..beaa28c8 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -55,11 +55,25 @@ html:not([data-has-sidebar]) .content-panel { +.button-grid { + display: grid; + grid-template-columns: repeat(2, auto); + justify-content: center; + gap: 0.5rem; +} + +@media (min-width: 768px) { + .button-grid { + grid-template-columns: repeat(4, auto); + } +} + .splash-content { - padding: 1rem; + padding: 1rem 1.5rem; margin-inline: auto; max-width: 80rem; - width: calc(var(--original-sl-content-width) +(100% - var(--original-sl-content-width) - var(--sl-sidebar-width)) / 2); + width: 100%; + box-sizing: border-box; text-align: center; } @@ -71,7 +85,13 @@ html:not([data-has-sidebar]) .content-panel { flex-direction: column; align-items: center; gap: 1rem; - padding: 4rem; + padding: 2rem 1.5rem; +} + +@media (min-width: 768px) { + .box-section { + padding: 4rem; + } }