Skip to content

Commit 37684b6

Browse files
authored
Merge branch 'master' into refactor/tutorial-titles
2 parents 33ddf55 + 9b3a7a2 commit 37684b6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

content/en/about/demos-examples.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ A starter/template for using Preact in buildless environments
125125
- [60FPS Rainbow Spiral](http://codepen.io/developit/full/xGoagz/) _(@ CodePen)_
126126
- [Simple Clock](http://jsfiddle.net/developit/u9m5x0L7/embedded/result,js/) _(@ JSFiddle)_
127127
- [3D + ThreeJS](http://codepen.io/developit/pen/PPMNjd?editors=0010) _(@ CodePen)_
128+
- [Endless Horse](https://codepen.io/youkwhd/pen/zYbjepj) _(@ CodePen)_
128129

129130
## Templates
130131

content/en/guide/v10/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: 'Write your first Preact application'
77

88
This guide walks through building a simple "ticking clock" component. If you're new to Virtual DOM, try the [full Preact tutorial](/tutorial).
99

10-
> :information_desk_person: This guide assumes that you completed the [Getting Started](/guide/v10/getting-started) document and have successfully set up your tooling. If not, start with [preact-cli](/guide/v10/getting-started#best-practices-powered-with-preact-cli).
10+
> :information_desk_person: This guide assumes that you completed the [Getting Started](/guide/v10/getting-started) document and have successfully set up your tooling. If not, start with [Vite](/guide/v10/getting-started#create-a-vite-powered-preact-app).
1111
1212
---
1313

content/ru/guide/v10/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: 'Напишите свое первое приложение Preact
77

88
В этом руководстве описывается создание простого компонента «тикающих часов». Если вы новичок в Virtual DOM, попробуйте [наш учебник по Preact](/tutorial).
99

10-
> :information_desk_person: В этом руководстве предполагается, что вы завершили работу с документом [Начало работы](/guide/v10/getting-started) и успешно настроили свои инструменты. Если нет, начните с [preact-cli](/guide/v10/getting-started#best-practices-powered-with-preact-cli).
10+
> :information_desk_person: В этом руководстве предполагается, что вы завершили работу с документом [Начало работы](/guide/v10/getting-started) и успешно настроили свои инструменты. Если нет, начните с [Vite](/guide/v10/getting-started#create-a-vite-powered-preact-app).
1111
1212
---
1313

src/components/controllers/page/sidebar.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
/* --color-brand 40% lighter */ 0 3px 8px rgba(0, 0, 0, 0.5);
4747
}
4848

49-
[data-open] & {
49+
[data-open='true'] & {
5050
background: var(--color-brand-light);
5151

5252
&:after {
@@ -84,7 +84,7 @@
8484
background: transparent;
8585
}
8686

87-
[data-open] & {
87+
[data-open='true'] & {
8888
visibility: visible;
8989
transform: translateY(0);
9090
opacity: 1;

0 commit comments

Comments
 (0)