Update CSS properties and layouts in MDX files

The CSS properties in the starlight_main.css, starlight.css files were updated for both dark and light modes to improve color consistency and design elements such as background gradients and list marker color. Layouts of the MDX files (first-project-checklist.mdx, getting-started.mdx, and welcome-to-docs.mdx) were also updated to use the Starlight Layout.
This commit is contained in:
Emil Gulamov 2024-03-21 23:20:12 +04:00
parent 18d413f767
commit d69078b745

View file

@ -0,0 +1,13 @@
---
// Importing View Transitions component
import { ViewTransitions } from "astro:transitions";
---
<html lang="en">
<head>
<ViewTransitions />
</head>
<body>
<slot />
</body>
</html>