diff options
| author | Lyssa | 2026-01-30 13:11:45 +0000 |
|---|---|---|
| committer | Lyssa | 2026-01-30 13:11:45 +0000 |
| commit | 8587bcc07c2fa95a66e9180c548509a561660896 (patch) | |
| tree | a49ffaf7bbcf3abfd4c39a7738acbbc2dea5dd3c | |
| parent | 8af0b08c3fe8d99cd73d4a1bb153e3623f622062 (diff) | |
| download | massgrave.dev-8587bcc07c2fa95a66e9180c548509a561660896.zip | |
Attempt to make command look better
| -rw-r--r-- | docs/intro.md | 4 | ||||
| -rw-r--r-- | src/css/custom.css | 9 |
2 files changed, 9 insertions, 4 deletions
diff --git a/docs/intro.md b/docs/intro.md index 2a6c720..2b72fe1 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -23,11 +23,11 @@ import TabItem from '@theme/TabItem'; 1. Click the **Start Menu**, type `PowerShell`, and open it.
2. Copy and paste the code below and press **Enter.**
- <span className="launcher-command">
+ <div className="launcher-command">
```powershell
irm https://get.activated.win | iex
```
- </span>
+ </div>
3. In the menu that appears, type the number corresponding to one of the **Green** options.
diff --git a/src/css/custom.css b/src/css/custom.css index df28168..2b80809 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -146,9 +146,14 @@ table { display: none; } +.launcher-command { + margin-left: 24px; + margin-right: 24px; +} + .launcher-command code[class*='codeBlockLines'] { - text-align: center; - font-size: 1.1em; + border: 1px solid #ddd; + border-left: 4px solid var(--ifm-color-primary-darker); } @media(max-width: 996px) { |
