Skip to content

Commit 7542bcb

Browse files
committed
Update Sidebar, Search Modal, Dependencies
1 parent a409c67 commit 7542bcb

File tree

3 files changed

+287
-264
lines changed

3 files changed

+287
-264
lines changed

.vitepress/theme/custom.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
rgba(29, 99, 237, 0.7)
88
);
99
--vp-home-hero-image-filter: blur(64px);
10+
11+
--vp-sidebar-width: 210px; /* Custom Sidebar Width */
1012
}
1113

1214
body {
@@ -29,3 +31,12 @@ table th {
2931
.search-keywords {
3032
display: none;
3133
}
34+
35+
/* NOTE: This is a "fix" for the search modal content shift */
36+
@supports (scrollbar-gutter: stable) {
37+
@media (min-width: 769px) {
38+
html {
39+
scrollbar-gutter: stable;
40+
}
41+
}
42+
}

docs/guides/get-started.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ _If creating a [new workflow](https://docs.github.com/en/actions/concepts/workfl
2828
The only 4 required inputs are [name](../docs/inputs.md#name), [host](../docs/inputs.md#host), [user](../docs/inputs.md#user)
2929
and [pass](../docs/inputs.md#pass) or [ssh_key](../docs/inputs.md#ssh_key) _(not both)_.
3030

31-
> See the [Inputs Documentation](../docs/inputs.md) for more options and **default** values.
31+
<div class="tip custom-block" style="padding-top: 8px">
32+
33+
See the [Inputs Documentation](../docs/inputs.md) for more options and **default** values.
34+
35+
</div>
3236

3337
## Usage
3438

@@ -41,7 +45,11 @@ If using the [env_file](https://docs.docker.com/compose/how-tos/environment-vari
4145
The workflow runs based on the [events](https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows) defined in the `on:` parameter.
4246
If using the `workflow_dispatch` trigger you can [manually run the job](https://docs.github.com/en/actions/how-tos/manage-workflow-runs/manually-run-a-workflow) at any time.
4347

44-
> See the [Inputs Documentation](../docs/inputs.md) for more options to customize your deployment.
48+
<div class="tip custom-block" style="padding-top: 8px">
49+
50+
See the [Inputs Documentation](../docs/inputs.md) for more options to customize your deployment.
51+
52+
</div>
4553

4654
## Command
4755

@@ -63,7 +71,11 @@ docker compose ${STACK_FILES[@]} -p ${INPUT_NAME} up -d -y ${EXTRA_ARGS[@]}
6371

6472
You can view the full deployment script on GitHub: [src/main.sh](https://github.com/cssnr/stack-deploy-action/blob/master/src/main.sh)
6573

66-
> See the [Inputs Documentation](../docs/inputs.md) for more options to customize the deployment.
74+
<div class="tip custom-block" style="padding-top: 8px">
75+
76+
See the [Inputs Documentation](../docs/inputs.md) for more options to customize the deployment.
77+
78+
</div>
6779

6880
## Secrets
6981

0 commit comments

Comments
 (0)