You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/postcss-logical-float-and-clear/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -52,9 +52,9 @@ instructions for:
52
52
53
53
### inlineDirection
54
54
55
-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
55
+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
56
56
57
-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
57
+
**You should tweak this value so that it is specific to your language and writing mode.**
Copy file name to clipboardExpand all lines: plugins/postcss-logical-float-and-clear/docs/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@
34
34
35
35
### inlineDirection
36
36
37
-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
37
+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
38
38
39
-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39
+
**You should tweak this value so that it is specific to your language and writing mode.**
Copy file name to clipboardExpand all lines: plugins/postcss-logical-resize/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -58,9 +58,9 @@ instructions for:
58
58
59
59
### blockDirection & inlineDirection
60
60
61
-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
61
+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
62
62
63
-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
63
+
**You should tweak these values so that they are specific to your language and writing mode.**
Copy file name to clipboardExpand all lines: plugins/postcss-logical-resize/docs/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@
34
34
35
35
### blockDirection & inlineDirection
36
36
37
-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
37
+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
38
38
39
-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39
+
**You should tweak these values so that they are specific to your language and writing mode.**
Copy file name to clipboardExpand all lines: plugins/postcss-logical-viewport-units/README.md
+19-19
Original file line number
Diff line number
Diff line change
@@ -49,39 +49,39 @@ instructions for:
49
49
50
50
## Options
51
51
52
-
### inlineDirection
52
+
### inlineDirection
53
53
54
-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
54
+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
55
55
56
-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
56
+
**You should tweak this value so that it is specific to your language and writing mode.**
57
57
58
-
```js
59
-
postcssLogicalViewportUnits({
60
-
inlineDirection:'top-to-bottom'
61
-
})
62
-
```
58
+
```js
59
+
postcssLogicalViewportUnits({
60
+
inlineDirection:'top-to-bottom'
61
+
})
62
+
```
63
63
64
-
```pcss
65
-
.foo {
64
+
```pcss
65
+
.foo {
66
66
margin: 10vi 20vb;
67
67
}
68
68
69
-
/* becomes */
69
+
/* becomes */
70
70
71
-
.foo {
71
+
.foo {
72
72
margin: 10vh 20vw;
73
73
margin: 10vi 20vb;
74
74
}
75
-
```
75
+
```
76
76
77
-
Each direction must be one of the following:
77
+
Each direction must be one of the following:
78
78
79
-
-`top-to-bottom`
80
-
-`bottom-to-top`
81
-
-`left-to-right`
82
-
-`right-to-left`
79
+
-`top-to-bottom`
80
+
-`bottom-to-top`
81
+
-`left-to-right`
82
+
-`right-to-left`
83
83
84
-
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
84
+
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
Copy file name to clipboardExpand all lines: plugins/postcss-logical-viewport-units/docs/README.md
+19-19
Original file line number
Diff line number
Diff line change
@@ -32,34 +32,34 @@
32
32
33
33
## Options
34
34
35
-
### inlineDirection
35
+
### inlineDirection
36
36
37
-
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right` respectively which would match any latin language.
37
+
The `inlineDirection` option allows you to specify the direction of the inline axe. The default value is `left-to-right`, which would match any latin language.
38
38
39
-
You might want to tweak these value if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39
+
**You should tweak this value so that it is specific to your language and writing mode.**
40
40
41
-
```js
42
-
<exportName>({
43
-
inlineDirection:'top-to-bottom'
44
-
})
45
-
```
41
+
```js
42
+
<exportName>({
43
+
inlineDirection:'top-to-bottom'
44
+
})
45
+
```
46
46
47
-
```pcss
48
-
<example.css>
47
+
```pcss
48
+
<example.css>
49
49
50
-
/* becomes */
50
+
/* becomes */
51
51
52
-
<example.vertical.expect.css>
53
-
```
52
+
<example.vertical.expect.css>
53
+
```
54
54
55
-
Each direction must be one of the following:
55
+
Each direction must be one of the following:
56
56
57
-
-`top-to-bottom`
58
-
-`bottom-to-top`
59
-
-`left-to-right`
60
-
-`right-to-left`
57
+
-`top-to-bottom`
58
+
-`bottom-to-top`
59
+
-`left-to-right`
60
+
-`right-to-left`
61
61
62
-
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
62
+
Please do note that transformations won't do anything particular for `right-to-left` or `bottom-to-top`.
Copy file name to clipboardExpand all lines: plugins/postcss-logical/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -66,9 +66,9 @@ instructions for:
66
66
67
67
### blockDirection & inlineDirection
68
68
69
-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
69
+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
70
70
71
-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
71
+
**You should tweak these values so that they are specific to your language and writing mode.**
Copy file name to clipboardExpand all lines: plugins/postcss-logical/docs/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@
34
34
35
35
### blockDirection & inlineDirection
36
36
37
-
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively which would match any latin language.
37
+
The `blockDirection` and `inlineDirection` options allow you to specify the direction of the block and inline axes. The default values are `top-to-bottom` and `left-to-right` respectively, which would match any latin language.
38
38
39
-
You might want to tweak these values if you are using a different writing system, such as Arabic, Hebrew or Chinese for example.
39
+
**You should tweak these values so that they are specific to your language and writing mode.**
0 commit comments