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:
parent
18d413f767
commit
d69078b745
1 changed files with 13 additions and 0 deletions
13
src/layouts/StarlightLayout.astro
Normal file
13
src/layouts/StarlightLayout.astro
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
// Importing View Transitions component
|
||||
import { ViewTransitions } from "astro:transitions";
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<ViewTransitions />
|
||||
</head>
|
||||
<body>
|
||||
<slot />
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Reference in a new issue