diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 29b1795922..b6639f8335 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -4,6 +4,8 @@ import { SEO } from "astro-seo"; import Header from "./Header.astro"; import Footer from "./Footer.astro"; +import '../styles/base.css'; + const { title = "Nix & NixOS | Reproducible builds and deployments", description = "Nix is a tool that takes a unique approach to package management and system configuration. Learn how to make reproducible, declarative and reliable systems.", diff --git a/src/styles/base.css b/src/styles/base.css new file mode 100644 index 0000000000..42aad77945 --- /dev/null +++ b/src/styles/base.css @@ -0,0 +1,10 @@ +/* The integration's default injected base.css file */ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + main a:-webkit-any-link { + @apply underline decoration-1 underline-offset-2 text-nixsemidarkblue; + } +} \ No newline at end of file