style(docs): move notice; update note icon

This commit is contained in:
Ayo 2022-11-07 22:14:34 +01:00
parent 6bab48f485
commit d02c1e4081
3 changed files with 9 additions and 9 deletions

View file

@ -17,13 +17,6 @@ const title = frontmatter.title;
<article id="article" class="content">
<section class="main-section">
<h1 class="content-title" id="overview">{title}</h1>
<div class="warning">
<strong>🛠 Under Construction:</strong> This library and the documentation are
undergoing rigorous development. Read and join our <a
href="https://github.com/ayoayco/astro-reactive-library/discussions"
>discussions</a
> for questions, suggestions, or feedback.
</div>
<nav class="block sm:hidden">
<TableOfContents client:media="(max-width: 50em)" headings={headings} />
</nav>

View file

@ -69,7 +69,7 @@ const githubEditUrl = `${CONFIG.GITHUB_EDIT_URL}/${currentFile}`;
}
#grid-main {
padding: var(--doc-padding) var(--gutter);
padding: 0 var(--gutter);
grid-column: 2;
display: flex;
flex-direction: column;
@ -142,6 +142,13 @@ const githubEditUrl = `${CONFIG.GITHUB_EDIT_URL}/${currentFile}`;
<LeftSidebar currentPage={currentPage} />
</aside>
<div id="grid-main">
<div class="warning">
<strong>🛠 Under Construction:</strong> This library and the documentation
are undergoing rigorous development. Read and join our <a
href="https://github.com/ayoayco/astro-reactive-library/discussions"
>discussions</a
> for questions, suggestions, or feedback.
</div>
<PageContent
frontmatter={frontmatter}
headings={headings}

View file

@ -69,7 +69,7 @@ The example above will result in a form containing three controls: a text field
The `FormGroup` constructor takes an array `ControlConfig[]`.
> **❗️ Note:** The `ControlConfig` type will be defined in the [FormControl](/en/api/form/form-control) class documentation.
> **📝 Note:** The `ControlConfig` type will be defined in the [FormControl](/en/api/form/form-control) class documentation.
### Setting up multiple field sets