Skip to content

Commit 78b6961

Browse files
committed
please be fine
1 parent 1639bf2 commit 78b6961

File tree

5 files changed

+6
-40
lines changed

5 files changed

+6
-40
lines changed

LICENSE

-21
This file was deleted.

README.md

+1-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1 @@
1-
# FerrumC Documentation
2-
This is the public repository for our documentation.\
3-
You can access the docs [here](https://docs.ferrumc.com/).
4-
5-
## Contributing
6-
Want to contribute? See the below guide.
7-
8-
1. [Fork the repository](https://github.com/ferrumc-rs/docs/fork) and then clone it.
9-
```bash
10-
git clone https://github.com/user/docs
11-
```
12-
13-
2. Open a terminal in the new cloned repository folder and run `npm install`. This will install necessary dependencies.
14-
15-
3. Run `npm run dev` to start a dev server. You will be provided with a link that will update automatically on changes.
16-
17-
4. Make your changes! Experiment, and then open a PR.
1+
## This work is licensed under a CC BY 4.0 licence.

src/components/HeadlessTabs.astro

+3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
---
22
import { Tabs } from '@astrojs/starlight/components';
33
import type { ComponentProps } from 'astro/types';
4+
45
type Props = ComponentProps<typeof Tabs>;
56
---
7+
68
<div class="hide-tablist">
79
<Tabs {...Astro.props}><slot /></Tabs>
810
</div>
11+
912
<style>
1013
.hide-tablist :global(.tablist-wrapper) {
1114
display: none;

src/content/docs/start/getting_started.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,4 +322,4 @@ You can change logging level by using ```--log=<level>```:
322322

323323

324324

325-
---
325+
---

src/style/theme.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:root {
33
--sl-color-accent-low: #460b05;
44
--sl-color-accent: #c60e00;
5-
--sl-color-accent-high: #e35519;
5+
--sl-color-accent-high: #feb3a6;
66
--sl-color-white: #ffffff;
77
--sl-color-gray-1: #f3ecea;
88
--sl-color-gray-2: #c8c0be;

0 commit comments

Comments
 (0)