-

+
{
!isList && (
@@ -64,19 +64,10 @@ if (!firstRecipe) {
display: flex;
align-items: center;
flex-wrap: wrap;
- gap: 0.25rem;
- }
- .flex > img {
- margin-right: 0.25rem;
+ gap: 0.5rem;
}
ul {
- margin-left: 0.5rem;
- }
- .root {
- background-color: var(--theme-bg-offset);
- border-radius: 8px;
- padding: 24px;
- width: max-content;
- max-width: 100%;
+ margin-top: 0 !important;
+ margin-inline-start: 0.5rem;
}
diff --git a/src/content/docs/en/core-concepts/astro-components.mdx b/src/content/docs/en/core-concepts/astro-components.mdx
index 6ea948662dfb7..36afd92b5cb09 100644
--- a/src/content/docs/en/core-concepts/astro-components.mdx
+++ b/src/content/docs/en/core-concepts/astro-components.mdx
@@ -383,4 +383,6 @@ A [`
` element](/en/core-concepts/astro-components/#slots) inside an HTML
## Next Steps
-๐ Learn about using [UI framework components](/en/core-concepts/framework-components/) in your Astro project.
+import ReadMore from '~/components/ReadMore.astro';
+
+
Read more about using [UI framework components](/en/core-concepts/framework-components/) in your Astro project.
diff --git a/src/content/docs/en/core-concepts/astro-pages.mdx b/src/content/docs/en/core-concepts/astro-pages.mdx
index 5b5d9a0c07eca..419aa2a47dbf0 100644
--- a/src/content/docs/en/core-concepts/astro-pages.mdx
+++ b/src/content/docs/en/core-concepts/astro-pages.mdx
@@ -4,6 +4,7 @@ description: An introduction to Astro pages
i18nReady: true
---
+import ReadMore from '~/components/ReadMore.astro';
import Since from '~/components/Since.astro'
**Pages** are files that live in the `src/pages/` subdirectory of your Astro project. They are responsible for handling routing, data loading, and overall page layout for every page in your website.
@@ -23,7 +24,7 @@ Astro leverages a routing strategy called **file-based routing**. Each file in y
A single file can also generate multiple pages using [dynamic routing](/en/core-concepts/routing/#dynamic-routes). This allows you to create pages even if your content lives outside of the special `/pages/` directory, such as in a [content collection](/en/guides/content-collections/) or a [CMS](/en/guides/cms/).
-๐ Read more about [Routing in Astro](/en/core-concepts/routing/).
+
Read more about [Routing in Astro](/en/core-concepts/routing/).
### Link between pages
@@ -66,7 +67,7 @@ import MySiteLayout from '../layouts/MySiteLayout.astro';
```
-๐ Read more about [layout components](/en/core-concepts/layouts/) in Astro.
+
Read more about [layout components](/en/core-concepts/layouts/) in Astro.
## Markdown/MDX Pages
@@ -87,7 +88,7 @@ title: 'My Markdown page'
This is my page, written in **Markdown.**
```
-๐ Read more about [Markdown](/en/guides/markdown-content/) in Astro.
+
Read more about [Markdown](/en/guides/markdown-content/) in Astro.
## HTML Pages
diff --git a/src/content/docs/en/core-concepts/framework-components.mdx b/src/content/docs/en/core-concepts/framework-components.mdx
index b25b70d6f7eb1..ccc8001f26305 100644
--- a/src/content/docs/en/core-concepts/framework-components.mdx
+++ b/src/content/docs/en/core-concepts/framework-components.mdx
@@ -4,6 +4,7 @@ description: Learn how to use React, Svelte, etc.
i18nReady: true
---
import IntegrationsNav from '~/components/IntegrationsNav.astro'
+import ReadMore from '~/components/ReadMore.astro'
Build your Astro website without sacrificing your favorite component framework. Create Astro [islands](/en/concepts/islands/) with the UI frameworks of your choice.
@@ -79,7 +80,7 @@ Most framework-specific accessibility patterns should work the same when these c
There are several hydration directives available for UI framework components: `client:load`, `client:idle`, `client:visible`, `client:media={QUERY}` and `client:only={FRAMEWORK}`.
-๐ See our [directives reference](/en/reference/directives-reference/#client-directives) page for a full description of these hydration directives, and their usage.
+
See our [directives reference](/en/reference/directives-reference/#client-directives) page for a full description of these hydration directives, and their usage.
## Mixing Frameworks
@@ -233,7 +234,7 @@ If you try to hydrate an Astro component with a `client:` modifier, you will get
[Astro components](/en/core-concepts/astro-components/) are HTML-only templating components with no client-side runtime. But, you can use a `
```
-๐ See how [client-side scripts](/en/guides/client-side-scripts/) work in Astro components.
+
See how [client-side scripts](/en/guides/client-side-scripts/) work in Astro components.
### `define:vars`
diff --git a/src/content/docs/en/tutorials/add-view-transitions.mdx b/src/content/docs/en/tutorials/add-view-transitions.mdx
index 88e0ca14b7bc4..1fc67d6253b2c 100644
--- a/src/content/docs/en/tutorials/add-view-transitions.mdx
+++ b/src/content/docs/en/tutorials/add-view-transitions.mdx
@@ -10,6 +10,7 @@ import MultipleChoice from '~/components/tutorial/MultipleChoice.astro';
import Option from '~/components/tutorial/Option.astro';
import Spoiler from '~/components/Spoiler.astro';
import PreCheck from '~/components/tutorial/PreCheck.astro';
+import ReadMore from '~/components/ReadMore.astro'
**View transitions** are a way to control what happens when visitors navigate between pages on your site. Astro's View Transitions API allows you to add optional navigation features including smooth page transitions and animations, controlling the browser's history stack of visited pages, and preventing full-page refreshes in order to persist some page elements and state while updating the content displayed.
@@ -378,7 +379,7 @@ With view transitions, some scripts may no longer re-run after page navigation l
```
Navigate to any blog post in your browser preview, and you will see the description fade in slower than the rest of the text.
- ๐ Read more about the different [transition directives](/en/guides/view-transitions/#transition-directives) and [customizing animations](/en/guides/view-transitions/#customizing-animations).
+
Read more about the different [transition directives](/en/guides/view-transitions/#transition-directives) and [customizing animations](/en/guides/view-transitions/#customizing-animations).
### Force a full browser reload for some links