Skip to content

Commit

Permalink
feat: add release timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
altrusl committed Jan 30, 2024
1 parent 51de858 commit dff62ec
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
34 changes: 33 additions & 1 deletion docs/ru/release-timeline/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ head:

# Конфигурация

## Конфигурационный файл
## Опции

```js
export const DefaultOptions = {
Expand Down Expand Up @@ -43,3 +43,35 @@ export const DefaultOptions = {
},
};
```

## Стилизация

Библиотека использует CSS переменные для поддержки тем. По умолчанию они подключены к CSS переменным VitePress

```css
:root {
--rt-c-text-1: var(--vp-c-text-1);
--rt-c-text-2: var(--vp-c-text-2);
--rt-c-text-3: var(--vp-c-text-3);
--rt-c-divider: var(--vp-c-divider);
--rt-c-bg-alt: var(--vp-c-bg-alt);
--rt-c-brand-1: var(--vp-c-brand-1);
--rt-c-brand-2: var(--vp-c-brand-2);
}
```

Вы можете переопределить их:

```vue
<style>
:root {
--rt-c-text-1: #3c3c43;
--rt-c-text-2: #3c3c43c7;
--rt-c-text-3: #3c3c438f;
--rt-c-divider: #e2e2e3;
--rt-c-bg-alt: #f6f6f7;
--rt-c-brand-1: #3451b2;
--rt-c-brand-2: #3a5ccc;
}
</style>
```
2 changes: 1 addition & 1 deletion docs/ru/release-timeline/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pnpm add release-timeline

## Использованиe в коде

<!-- In your code: -->
Во Vue компоненте или в VitePress .md файле:

```vue
<script setup>
Expand Down

0 comments on commit dff62ec

Please sign in to comment.